*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --green: #27e094;
  --green-dark: #22c480;
  --green-dim: rgba(0, 229, 176, 0.04);
  --bg: #0A0F0D;
  --bg-card: #111813;
  --border: rgba(255, 255, 255, .07);
  --border-g: rgba(0, 229, 176, 0.14);
  --t0: #fff;
  --t1: #E2EDE9;
  --t2: #9DB3AC;
  --t3: #5A7068;
  --warn: #F5A623;
  --err: #FF4D6D;
  --info: #58A6FF;
  --font: 'Sora', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-full: 9999px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .12);
  border-radius: 3px
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(10, 15, 13, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border)
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.04em;
  text-decoration: none
}

.nav-logo span {
  color: var(--green)
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--t0)
}

.nav-links a.active {
  color: var(--green)
}

.nav-cta {
  display: flex;
  gap: .75rem;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s var(--ease);
  white-space: nowrap;
  border-radius: var(--r-md);
  line-height: 1
}

.btn-sm {
  font-size: .8125rem;
  padding: .5rem 1.125rem;
  height: 36px
}

.btn-md {
  font-size: .9375rem;
  padding: .7rem 1.5rem;
  height: 44px
}

.btn-lg {
  font-size: 1rem;
  padding: .875rem 2rem;
  height: 52px
}

.btn-primary {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #071210;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0, 229, 176, 0.08)
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 229, 176, 0.09)
}

.btn-ghost {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--border)
}

.btn-ghost:hover {
  color: var(--t0);
  background: rgba(255, 255, 255, .05)
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-g)
}

.btn-outline:hover {
  background: var(--green-dim)
}

.mobile-hide {
  display: inline-flex
}

@media(max-width:768px) {
  .mobile-hide {
    display: none
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.a1 {
  animation: fadeUp .7s var(--ease) .05s both
}

.a2 {
  animation: fadeUp .7s var(--ease) .18s both
}

.a3 {
  animation: fadeUp .7s var(--ease) .31s both
}

.a4 {
  animation: fadeUp .7s var(--ease) .44s both
}

.a5 {
  animation: fadeUp .7s var(--ease) .57s both
}

/* HERO — PVA via Identidade */
.hero {
  min-height: 100vh;
  padding: 80px clamp(20px, 5vw, 64px) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative
}

.hero-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(0, 229, 176, 0.03), transparent 65%);
  pointer-events: none;
  z-index: 0
}

.hero-left {
  position: relative;
  z-index: 1
}

.eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--green);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0
}

.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--t0);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem
}

.hero-h1 .hl {
  color: var(--green)
}

.hero-sub {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem
}

.trust-col {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.ti {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .825rem;
  color: var(--t2)
}

.ti-icon {
  color: var(--green)
}

/* INBOX VISUAL */
.hero-right {
  position: relative;
  z-index: 1
}

.inbox-card {
  background: #0a1410;
  border: 1px solid rgba(0, 229, 176, 0.05);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 80px rgba(0, 229, 176, 0.02)
}

.inbox-bar {
  background: #111a18;
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid rgba(0, 229, 176, 0.03)
}

.i-dots {
  display: flex;
  gap: .4rem
}

.i-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%
}

.i-dot-r {
  background: #FF4D6D
}

.i-dot-y {
  background: #F5A623
}

.i-dot-g {
  background: var(--green)
}

.inbox-title-bar {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--t3);
  margin: 0 auto
}

.inbox-addr {
  background: rgba(0, 229, 176, 0.02);
  border-bottom: 1px solid rgba(0, 229, 176, 0.03);
  padding: .6rem 1.25rem;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: .5rem
}

.lock-icon {
  color: var(--green)
}

.inbox-tabs {
  background: #0d1a17;
  padding: .625rem 1.25rem;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(0, 229, 176, 0.02)
}

.i-tab {
  font-size: .7rem;
  color: var(--t3);
  cursor: pointer
}

.i-tab.active {
  color: var(--green)
}

.email-item {
  padding: .875rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  cursor: pointer;
  transition: background .15s
}

.email-item:hover {
  background: rgba(0, 229, 176, 0.01)
}

.email-item.unread .em-sender {
  color: var(--t0);
  font-weight: 600
}

.email-item.unread .em-subject {
  color: var(--t0)
}

.em-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.em-body {
  flex: 1;
  min-width: 0
}

.em-top {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .2rem
}

.em-sender {
  font-size: .78rem;
  color: var(--t2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.em-time {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--t3);
  flex-shrink: 0
}

.em-subject {
  font-size: .78rem;
  color: var(--t1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: .12rem
}

.em-preview {
  font-size: .72rem;
  color: var(--t3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.unread-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 5px;
  animation: pulse 2s ease infinite
}

.compose-bar {
  margin: .75rem 1.25rem 1.25rem;
  background: rgba(0, 229, 176, 0.02);
  border: 1px solid rgba(0, 229, 176, 0.04);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.compose-from {
  font-family: var(--mono);
  font-size: .7rem
}

.compose-label {
  color: var(--t3)
}

.compose-addr {
  color: var(--green)
}

.compose-hint {
  font-size: .72rem;
  color: var(--t3);
  flex: 1;
  font-style: italic
}

.send-btn-mini {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #071210;
  font-size: .7rem;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  padding: .3rem .75rem;
  cursor: pointer
}

.float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #111a18;
  border: 1px solid rgba(0, 229, 176, 0.06);
  border-radius: var(--r-xl);
  padding: .875rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  z-index: 2
}

.fb-line {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--t2);
  margin-bottom: .2rem
}

.fb-line em {
  color: var(--green);
  font-style: normal
}

/* SECTION */
.section {
  padding: clamp(60px, 7vw, 96px) clamp(20px, 5vw, 64px)
}

.container {
  max-width: 1200px;
  margin: 0 auto
}

.s-label {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--green);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem
}

.s-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.035em;
  line-height: 1.2;
  margin-bottom: 1rem
}

.s-sub {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 560px
}

/* EMAIL BUILDER */
.builder-card {
  background: #0a1410;
  border: 1px solid rgba(0, 229, 176, 0.05);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(0, 229, 176, 0.02);
  max-width: 680px;
  margin: 0 auto
}

.builder-preview-label {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem
}

.builder-preview {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: 2rem;
  min-height: 2.25rem;
  word-break: break-all
}

.builder-preview .pname {
  color: var(--green)
}

.builder-preview .pat {
  color: var(--t3)
}

.builder-preview .pdomain {
  color: var(--t1)
}

.builder-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .75rem;
  align-items: end;
  margin-bottom: 1.5rem
}

.builder-at {
  font-size: 1.5rem;
  color: var(--t3);
  text-align: center;
  padding-bottom: .75rem
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: .35rem
}

.field-label {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .1em
}

.field-input {
  background: rgba(0, 229, 176, 0.02);
  border: 1px solid rgba(0, 229, 176, 0.05);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  font-family: var(--mono);
  font-size: .9rem;
  color: var(--t0);
  outline: none;
  width: 100%;
  transition: border-color .2s
}

.field-input:focus {
  border-color: rgba(0, 229, 176, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 229, 176, 0.03)
}

.field-input::placeholder {
  color: var(--t3)
}

.builder-note {
  font-size: .78rem;
  color: var(--t3);
  text-align: center;
  margin-top: .875rem
}

.builder-note a {
  color: var(--green);
  text-decoration: none
}

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all .25s var(--ease)
}

.feat-card:hover {
  border-color: var(--border-g);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 176, 0.03)
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green)
}

.feat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .4rem
}

.feat-desc {
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.65
}

/* TESTIMONIAL */
.testi-big {
  background: linear-gradient(135deg, #0d1f1b, #0a1410);
  border: 1px solid rgba(0, 229, 176, 0.04);
  border-radius: var(--r-2xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.tq {
  font-size: 1.15rem;
  color: var(--t1);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem
}

.tq::before {
  content: '"';
  font-size: 2.5rem;
  color: rgba(0, 229, 176, 0.06);
  line-height: 0;
  vertical-align: -.4em;
  margin-right: .15em
}

.tauthor {
  display: flex;
  align-items: center;
  gap: 1rem
}

.tav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  color: var(--green)
}

.tname {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--t0)
}

.trole {
  font-size: .8rem;
  color: var(--t3)
}

.tstats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.tstat {
  background: rgba(0, 229, 176, 0.02);
  border: 1px solid rgba(0, 229, 176, 0.04);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  text-align: center
}

.tstat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.03em
}

.tstat-num em {
  color: var(--green);
  font-style: normal
}

.tstat-label {
  font-size: .78rem;
  color: var(--t3);
  margin-top: .2rem
}

/* PLANS */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  transition: transform .25s var(--ease)
}

.plan:hover {
  transform: translateY(-2px)
}

.plan.featured {
  border-color: var(--border-g);
  background: #0d1a17;
  box-shadow: 0 0 60px rgba(0, 229, 176, 0.04)
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #071210;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  white-space: nowrap
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t0);
  margin-bottom: .3rem
}

.plan-tagline {
  font-size: .8rem;
  color: var(--t3);
  margin-bottom: 1.5rem
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.04em;
  line-height: 1
}

.plan-price sup {
  font-size: .95rem;
  vertical-align: super
}

.plan-period {
  font-size: .8rem;
  color: var(--t3);
  margin-bottom: 1.5rem
}

.plan-cta {
  width: 100%;
  margin-bottom: 1.5rem
}

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.pf {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .825rem;
  color: var(--t1)
}

.chk {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* CTA */
.cta-band {
  padding: clamp(60px, 7vw, 96px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 229, 176, 0.03), transparent 70%);
  pointer-events: none
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--t0);
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 1.125rem
}

.cta-sub {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 2.25rem
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.cta-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap
}

.cta-ti {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--t3)
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: 680px;
  margin: 0 auto
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden
}

.faq-q {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--t1);
  gap: 1rem;
  transition: color .15s
}

.faq-q:hover {
  color: var(--t0)
}

.faq-icon {
  color: var(--green);
  transition: transform .25s;
  flex-shrink: 0;
  width: 18px;
  height: 18px
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-a {
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
  display: none
}

.faq-item.open .faq-a {
  display: block
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(20px, 5vw, 64px)
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none
}

.footer-links a {
  font-size: .875rem;
  color: var(--t3);
  text-decoration: none;
  transition: color .18s
}

.footer-links a:hover {
  color: var(--t1)
}

.footer-copy {
  font-size: .8rem;
  color: var(--t3);
  font-family: var(--mono)
}

@media(max-width:900px) {
  .nav-links {
    display: none
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-right {
    display: none
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .plans-grid {
    grid-template-columns: 1fr
  }

  .testi-big {
    grid-template-columns: 1fr
  }

  .builder-fields {
    grid-template-columns: 1fr
  }

  .builder-at {
    display: none
  }

  .float-badge {
    display: none
  }
}