:root {
  --bg: #07000c;
  --bg-2: #14001f;
  --surface: rgba(255, 255, 255, .08);
  --surface-2: rgba(255, 255, 255, .13);
  --border: rgba(255, 255, 255, .16);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --muted-2: rgba(255, 255, 255, .54);
  --purple: #a100ff;
  --magenta: #ff2fd0;
  --pink: #ff3d8f;
  --cyan: #37e7ff;
  --blue: #496dff;
  --green: #42ff87;
  --shadow: 0 30px 90px rgba(0, 0, 0, .5);
  --radius: 30px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 50% -10%, rgba(161, 0, 255, .48), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(255, 47, 208, .19), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(55, 231, 255, .14), transparent 28%),
    linear-gradient(135deg, #050007 0%, #13001e 48%, #030008 100%);
}

.grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 84%);
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .55;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
  left: -120px;
  top: 80px;
  background: var(--magenta);
}

.orb-2 {
  right: -130px;
  top: 280px;
  background: var(--purple);
  animation-delay: -3s;
}

.orb-3 {
  left: 38%;
  bottom: -180px;
  background: var(--blue);
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -28px, 0) scale(1.06); }
}

.container {
  width: min(var(--max), calc(100% - 38px));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(72px, 9vw, 130px) 0;
}

.header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 28px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(8, 0, 12, .58);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -.06em;
  background:
    linear-gradient(#12001b, #12001b) padding-box,
    linear-gradient(135deg, var(--magenta), var(--purple), var(--cyan)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 36px rgba(255, 47, 208, .22);
}

.brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.04em;
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted-2);
  font-size: .76rem;
  margin-top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  padding: 13px 15px;
  border-radius: 999px;
  transition: .2s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.1);
}

.nav a.nav-webmail {
  color: #110018;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  box-shadow: 0 14px 34px rgba(255, 47, 208, .18);
}

.nav a.nav-webmail:hover {
  color: #110018;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: var(--text);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  border-radius: 10px;
  transition: .25s ease;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 70px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: .72;
  filter: contrast(1.08) saturate(1.08);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 47, 208, .16), transparent 24%),
    linear-gradient(90deg, rgba(7, 0, 12, .97) 0%, rgba(7, 0, 12, .64) 42%, rgba(7, 0, 12, .44) 72%, rgba(7, 0, 12, .88) 100%),
    linear-gradient(to bottom, rgba(7,0,12,.12), rgba(7,0,12,.94));
  z-index: 1;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 32%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  opacity: .35;
  animation: scanMove 5s linear infinite;
  z-index: 2;
}

@keyframes scanMove {
  0% { transform: translateY(-160px); opacity: 0; }
  20%, 70% { opacity: .35; }
  100% { transform: translateY(360px); opacity: 0; }
}

.hero-content {
  width: min(var(--max), calc(100% - 38px));
  margin-inline: auto;
  padding-top: 22px;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
}

.hero h1 {
  max-width: 930px;
  margin: 18px 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7.6vw, 7.65rem);
  line-height: .88;
  letter-spacing: -.08em;
  text-wrap: balance;
}

.hero-text {
  color: var(--muted);
  max-width: 720px;
  font-size: clamp(1.02rem, 1.9vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.contact-card a:hover,
.panel-cta:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #110018;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  box-shadow: 0 22px 60px rgba(255, 47, 208, .24);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.hero-stats {
  margin-top: 44px;
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  padding: 18px;
  min-height: 112px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -.05em;
}

.hero-stats span {
  color: var(--muted-2);
  font-size: .88rem;
  line-height: 1.45;
  display: block;
  margin-top: 8px;
}

.professional {
  padding-top: 38px;
}

.professional-grid,
.method-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.professional-copy h2,
.intro-copy h2,
.section-head h2,
.method-copy h2,
.cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.07em;
  text-wrap: balance;
}

.professional-copy h2,
.method-copy h2 {
  margin-top: 14px;
}

.professional-copy p,
.intro-copy p,
.section-head p:not(.eyebrow),
.method-copy p,
.cta p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.05rem;
}

.professional-copy p {
  margin-top: 20px;
  max-width: 690px;
}

.professional-highlights {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.professional-highlights div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.professional-highlights span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(255,255,255,.1);
  font-weight: 900;
}

.professional-highlights strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.professional-highlights small {
  color: var(--muted-2);
  line-height: 1.5;
}

.professional-photo {
  position: relative;
}

.photo-frame {
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  position: relative;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,0,12,.34), transparent 48%);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  object-position: center top;
}

.photo-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7,0,12,.52);
  backdrop-filter: blur(18px);
}

.photo-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -.04em;
}

.photo-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.products {
  position: relative;
  padding-top: 30px;
}

.products::before,
.method::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto 0;
  height: 52%;
  background: linear-gradient(90deg, rgba(255,47,208,.08), rgba(55,231,255,.06));
  transform: skewY(-4deg);
  z-index: -1;
}

.section-head {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 700px;
}

.product-tabs {
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.15);
  background:
    radial-gradient(circle at 80% 20%, rgba(55,231,255,.15), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-btn {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  font-family: inherit;
  transition: .2s ease;
}

.tab-btn:hover,
.tab-btn.active {
  color: #100019;
  border-color: transparent;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  box-shadow: 0 18px 42px rgba(255, 47, 208, .18);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(0,0,0,.22), rgba(255,255,255,.055));
  overflow: hidden;
  position: relative;
}

.tab-panel::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,47,208,.22), transparent 70%);
}

.tab-panel > * {
  position: relative;
  z-index: 1;
}

.panel-kicker {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .74rem;
  margin-bottom: 12px;
}

.tab-panel h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .9;
  letter-spacing: -.08em;
  margin-bottom: 18px;
}

.tab-panel p {
  max-width: 750px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.tab-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  max-width: 760px;
}

.tab-panel li {
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}

.tab-panel li::before {
  content: "✦";
  color: var(--cyan);
  position: absolute;
  left: 0;
  top: 0;
}

.panel-cta {
  min-height: 56px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0 22px;
  color: #110018;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  box-shadow: 0 22px 60px rgba(255, 47, 208, .2);
  transition: transform .2s ease;
}

.intro {
  padding-top: 40px;
}

.intro-grid {
  display: grid;
  grid-template-columns: .38fr 1fr;
  gap: 44px;
  align-items: start;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}

.section-label span {
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

.intro-copy p {
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  margin-top: 22px;
  max-width: 850px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-card,
.value-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 18px 60px rgba(0,0,0,.23);
  position: relative;
  overflow: hidden;
}

.timeline-card::before,
.value-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,47,208,.28), transparent 70%);
}

.timeline-card span,
.value-card span {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: rgba(255,255,255,.1);
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 28px;
}

.timeline-card h3,
.value-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.timeline-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.75;
}

.method {
  position: relative;
}

.method-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.method-list div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.method-list strong {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
}

.method-list span {
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.phone-card {
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 42px;
  padding: 26px;
  background:
    radial-gradient(circle at 42% 25%, rgba(255,47,208,.34), transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 38px;
}

.phone-top {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.phone-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
}

.phone-screen {
  position: absolute;
  inset: 88px 46px 46px 46px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.2)),
    radial-gradient(circle at center, rgba(161,0,255,.4), transparent 48%);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-screen p {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 900;
}

.phone-screen h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.frame-box {
  width: 70%;
  aspect-ratio: 1 / .82;
  border: 2px solid rgba(255,255,255,.24);
  border-radius: 22px;
  margin: 30px 0 auto;
  position: relative;
}

.frame-box::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  right: -30px;
  bottom: -30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
}

.bars {
  display: grid;
  gap: 10px;
}

.bars span {
  height: 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.bars span:nth-child(1) { width: 76%; }
.bars span:nth-child(2) { width: 54%; }
.bars span:nth-child(3) { width: 88%; }

.floating-tag {
  position: absolute;
  z-index: 2;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(16px);
  font-weight: 900;
  color: rgba(255,255,255,.86);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.tag-1 { right: 30px; top: 142px; }
.tag-2 { left: 12px; bottom: 174px; }
.tag-3 { right: 52px; bottom: 100px; }

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.brand-cloud span {
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.86);
  font-weight: 900;
  font-size: clamp(.92rem, 1.5vw, 1.08rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 260px;
}

.cta {
  padding-top: 20px;
}

.cta-box {
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 85% 18%, rgba(55,231,255,.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255,47,208,.2), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 66px);
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
}

.cta h2 {
  margin: 14px 0 20px;
  max-width: 820px;
}

.cta p {
  max-width: 760px;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card a {
  text-decoration: none;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.18);
  transition: .2s ease;
}

.contact-card a:hover {
  background: rgba(255,255,255,.11);
}

.contact-card small {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .7rem;
  margin-bottom: 8px;
}

.contact-card strong {
  font-size: .98rem;
  word-break: break-word;
}

.footer {
  padding: 30px 0 92px;
  color: var(--muted-2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.11);
  padding-top: 24px;
}

.footer a {
  text-decoration: none;
  font-weight: 800;
  color: var(--muted);
}

.float-actions {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.top-float {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  font-weight: 1000;
  font-size: 1.55rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.top-float:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.18);
}

.whatsapp-float {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #06130a;
  background: var(--green);
  font-weight: 1000;
  box-shadow: 0 18px 48px rgba(66, 255, 135, .24);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .professional-grid,
  .method-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .professional-photo {
    max-width: 560px;
  }

  .phone-card {
    min-height: 560px;
  }

  .phone-screen {
    inset: 78px 34px 34px 34px;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .panel-cta {
    width: fit-content;
  }
}

@media (max-width: 860px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 60;
  }

  .menu-open .menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(8,0,12,.92);
    backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: .25s ease;
  }

  .menu-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 17px 18px;
    background: rgba(255,255,255,.06);
  }

  .hero {
    min-height: auto;
    padding: 132px 0 54px;
  }

  .hero-image img {
    object-position: 56% center;
  }

  .hero-image::before {
    background:
      linear-gradient(90deg, rgba(7,0,12,.84), rgba(7,0,12,.42)),
      linear-gradient(to bottom, rgba(7,0,12,.22), rgba(7,0,12,.96));
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.25rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .panel-cta {
    width: 100%;
  }

  .professional-highlights div {
    grid-template-columns: 1fr;
  }

  .professional-highlights span {
    grid-row: auto;
  }

  .photo-frame {
    border-radius: 28px;
  }

  .photo-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 20px;
  }

  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tab-btn {
    width: 100%;
  }

  .tab-panel {
    min-height: auto;
    padding: 24px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-card,
  .value-card {
    min-height: auto;
  }

  .phone-card {
    min-height: 500px;
    border-radius: 30px;
    padding: 18px;
  }

  .phone-card::before {
    inset: 40px 18px 18px 18px;
    border-radius: 26px;
  }

  .phone-screen {
    inset: 68px 24px 24px 24px;
    padding: 24px;
    border-radius: 26px;
  }

  .floating-tag {
    font-size: .8rem;
    padding: 10px 12px;
  }

  .tag-1 { right: 18px; top: 116px; }
  .tag-2 { left: 18px; bottom: 132px; }
  .tag-3 { right: 22px; bottom: 72px; }

  .brand-cloud span {
    width: 100%;
  }

  .cta-box {
    border-radius: 30px;
  }

  .footer-inner {
    display: grid;
  }

  .float-actions {
    right: 14px;
    left: 14px;
    justify-items: stretch;
  }

  .top-float {
    justify-self: end;
  }

  .whatsapp-float {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
