:root {
  --ink: #172433;
  --ink-2: #344a5f;
  --muted: #6d7e8c;
  --paper: #f2faf8;
  --paper-2: #e4f2ef;
  --white: #ffffff;
  --line: #cfe2dd;
  --primary: #086c67;
  --primary-dark: #064f4b;
  --primary-soft: #ddf7f2;
  --blue: #177a92;
  --amber: #f2a51d;
  --amber-dark: #c77900;
  --mint: #74dcc5;
  --mint-dark: #26a586;
  --coral: #e56d4f;
  --shadow: 0 24px 70px rgba(20, 45, 58, .12);
  --shadow-soft: 0 16px 42px rgba(20, 45, 58, .09);
  --radius: 34px;
  --shell: min(1180px, calc(100% - 40px));
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--amber), var(--mint), var(--blue), var(--primary));
  z-index: 20;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  overflow: hidden;
}

.section-cloud {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 8px;
  z-index: 30;
  padding: 18px 0 0;
}

.header-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(207, 226, 221, .86);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(20, 45, 58, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: .015em;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 17px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: url("/assets/brand/untelcom-mark-v21.svg") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(8, 108, 103, .18));
}

.brand-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--ink);
  font-size: 1.09rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 18px;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
  opacity: 0;
  transform: scaleX(.72);
  transform-origin: left;
  transition: opacity .2s ease, transform .2s ease;
}

.brand:hover .brand-text::after,
.brand:focus-visible .brand-text::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex: 1 1 auto;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 800;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 8px;
  transition: color .2s ease, background-color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
  background: var(--primary-soft);
}

.header-cta {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .08), 0 14px 26px rgba(242, 165, 29, .25);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  padding: clamp(34px, 4.8vw, 62px) 0 clamp(24px, 4vw, 44px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.overline {
  margin: 0 0 16px;
  color: var(--primary);
  font-family: Nunito, Inter, sans-serif;
  font-size: .94rem;
  font-weight: 900;
  letter-spacing: .02em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Nunito, Inter, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.65rem, 4.35vw, 4.25rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.6rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
}

.hero-lead,
.section-heading p,
.proof-copy p,
.contact-card p {
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .12), 0 16px 30px rgba(8, 108, 103, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-soft {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.btn-full {
  width: 100%;
}

.hero-art {
  position: relative;
}

.blob-frame {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .42));
  box-shadow: var(--shadow);
}

.hero-blob {
  min-height: clamp(340px, 36vw, 462px);
  border-radius: 30% 70% 64% 36% / 34% 37% 63% 66%;
}

.hero-blob::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border-radius: 30% 70% 68% 32% / 38% 46% 54% 62%;
  background: var(--amber);
  transform: rotate(-7deg);
}

.hero-illustration {
  width: min(92%, 760px);
  height: auto;
}

.module {
  transform-origin: center;
  animation: floaty 6s ease-in-out infinite;
}

.module-two {
  animation-delay: -1.5s;
}

.module-three {
  animation-delay: -3s;
}

.dot-field {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .8;
  background-image: radial-gradient(rgba(255, 255, 255, .95) 0 6px, transparent 7px);
  background-size: 44px 44px;
}

.dot-field-left {
  top: 118px;
  left: 0;
  width: min(48vw, 650px);
  height: 330px;
}

.dot-field-wide {
  top: 150px;
  left: 0;
  right: 0;
  height: 300px;
}

.dot-field-right {
  top: 92px;
  right: 0;
  width: min(44vw, 600px);
  height: 330px;
}

.intro-strip {
  background: var(--white);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin: 22px 0 0;
}

.illustrated-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .82fr .82fr;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: clamp(48px, 6vw, 80px);
}

.benefit-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 42px);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.benefit-card-large {
  min-height: 470px;
}

.benefit-card h3 {
  margin-top: 20px;
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--ink-2);
}

.mini-blob {
  align-self: center;
  width: min(100%, 330px);
  aspect-ratio: 1.12;
  display: grid;
  place-items: center;
  border-radius: 30% 70% 66% 34% / 40% 42% 58% 60%;
}

.mini-blob svg {
  width: 95%;
  height: auto;
}

.mini-blob-blue {
  background: #dff3f6;
}

.mini-blob-green {
  background: #dff6ef;
}

.mini-blob-sun {
  background: #fff1d9;
}

.process-section {
  background: var(--paper);
}

.process-layout {
  position: relative;
  z-index: 1;
}

.process-scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  align-items: end;
  margin-top: clamp(52px, 6vw, 90px);
}

.scene {
  text-align: center;
}

.scene-center {
  transform: translateY(58px);
}

.scene-art {
  margin-inline: auto;
  width: min(100%, 360px);
  border-radius: 28% 72% 64% 36% / 45% 35% 65% 55%;
}

.scene h3 {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.scene p {
  max-width: 310px;
  margin: 10px auto 0;
  color: var(--ink-2);
  font-weight: 600;
}

.offers-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: .95fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: clamp(54px, 7vw, 92px);
}

.pricing-labels,
.plan {
  border-radius: 34px;
}

.pricing-labels {
  display: grid;
  grid-template-rows: repeat(8, minmax(76px, auto));
  padding: 0 26px 0 0;
  padding-top: 180px;
  color: var(--ink-2);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 900;
}

.pricing-labels span {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.plan {
  overflow: hidden;
  background: var(--paper);
}

.plan header {
  min-height: 180px;
  padding: 30px 28px 34px;
  text-align: center;
}

.plan h3 {
  color: var(--primary);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

.price {
  display: grid;
  place-items: center;
  min-height: 88px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1.25rem, 1.9vw, 1.85rem);
  font-weight: 900;
  line-height: 1.14;
}

.deal {
  margin: 14px auto 0;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--primary-dark);
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
}

.plan dl {
  margin: 0;
}

.plan dl div {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.plan dt {
  display: none;
}

.plan dd {
  margin: 0;
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 900;
  line-height: 1.28;
}

.plan-featured {
  background: var(--primary);
  color: var(--white);
}

.plan-featured h3,
.plan-featured .price,
.plan-featured dd {
  color: var(--white);
}

.plan-featured .price {
  background: rgba(255, 255, 255, .18);
}

.plan-featured dl div {
  border-color: rgba(255, 255, 255, .34);
}

.check {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white);
  font-size: 1.25rem;
}

.check.light {
  background: rgba(255, 255, 255, .24);
}

.proof-section {
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.proof-copy p {
  margin: 22px 0 0;
}

.proof-cards {
  display: grid;
  gap: 18px;
}

.proof-cards article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px 24px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof-cards strong {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: var(--amber);
  color: var(--white);
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.proof-cards h3 {
  font-size: 1.45rem;
}

.proof-cards p {
  margin: -6px 0 0;
  color: var(--ink-2);
}

.contact-section {
  background: var(--primary);
  color: var(--white);
}

.contact-section .overline,
.contact-section .contact-card p {
  color: rgba(255, 255, 255, .78);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.contact-card {
  padding: clamp(22px, 3vw, 38px) 0;
}

.contact-card p {
  margin: 22px 0 0;
}

.contact-promises {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-promises li {
  position: relative;
  padding-left: 34px;
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
}

.contact-promises li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(116, 220, 197, .18);
}

.contact-card .premium-visual {
  min-height: 260px;
  margin-top: 30px;
  border-radius: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 34px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 72px rgba(8, 79, 75, .2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(8, 108, 103, .14);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--primary);
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-2);
  font-weight: 700;
}

.inner-hero {
  position: relative;
  padding: clamp(46px, 6vw, 78px) 0 clamp(42px, 6vw, 76px);
  overflow: hidden;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.inner-copy h1 {
  max-width: 770px;
  font-size: clamp(2.65rem, 4.8vw, 5.1rem);
}

.inner-copy p:not(.overline) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.75;
}

.inner-art {
  display: grid;
  place-items: center;
}

.inner-blob {
  position: relative;
  isolation: isolate;
  width: min(100%, 560px);
  min-height: clamp(330px, 36vw, 480px);
  display: grid;
  place-items: center;
  border-radius: 32% 68% 62% 38% / 37% 42% 58% 63%;
  background: linear-gradient(140deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .54));
  box-shadow: var(--shadow);
}

.inner-blob::before {
  content: "";
  position: absolute;
}

.inner-illustration {
  width: min(90%, 430px);
  height: auto;
}

.inner-content {
  background: var(--white);
}

.inner-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 30px);
}

.inner-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .2s ease, box-shadow .2s ease;
}

.inner-card:nth-child(3n + 2) {
  background: #e2f6ef;
}

.inner-card:nth-child(3n) {
  background: #fff3df;
}

.inner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.card-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 17px;
  background: var(--amber);
  color: var(--white);
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
}

.inner-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.inner-card p {
  margin: 14px 0 0;
  color: var(--ink-2);
}

.premium-visuals {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  margin: clamp(34px, 5vw, 66px) 0 clamp(34px, 5vw, 68px);
}

.premium-visuals-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-visuals-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-visuals-trio .premium-visual:first-child {
  grid-row: auto;
}

.premium-visuals-wide {
  grid-template-columns: 1fr;
}

.premium-visual {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  min-height: clamp(220px, 22vw, 340px);
  overflow: hidden;
  border: 1px solid rgba(207, 226, 221, .78);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 18%, rgba(116, 220, 197, .26), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, .96), rgba(242, 250, 248, .86));
  box-shadow: var(--shadow-soft);
}

.premium-visual::after {
  content: "";
  position: absolute;
  inset: auto 9% -32px;
  height: 68px;
  border-radius: 999px;
  background: rgba(8, 108, 103, .09);
  filter: blur(18px);
}

.premium-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(94%, 920px);
  height: auto;
}

.premium-visual-compact {
  min-height: clamp(220px, 21vw, 310px);
}

.premium-visuals-wide .premium-visual {
  min-height: clamp(260px, 28vw, 380px);
}

.premium-visual-light {
  background:
    radial-gradient(circle at 78% 20%, rgba(242, 165, 29, .18), transparent 28%),
    linear-gradient(140deg, #fff, #f2faf8);
}

.premium-visual-mint {
  background:
    radial-gradient(circle at 24% 24%, rgba(116, 220, 197, .28), transparent 30%),
    linear-gradient(140deg, #effaf7, #fff);
}

.premium-visual-sun {
  background:
    radial-gradient(circle at 72% 20%, rgba(242, 165, 29, .24), transparent 30%),
    linear-gradient(140deg, #fff8eb, #fff);
}

.inner-band {
  background: var(--paper);
}

.band-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 42px;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.band-panel .overline {
  color: rgba(255, 255, 255, .78);
}

.band-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.band-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.8;
}

.contact-page-section {
  background: var(--white);
}

.contact-page-section .contact-card {
  color: var(--ink);
}

.contact-page-section .contact-card .overline {
  color: var(--primary);
}

.contact-page-section .contact-card p {
  color: var(--ink-2);
}

.contact-page-section .contact-promises li {
  color: var(--ink);
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-text {
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, auto));
  gap: 10px 28px;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1060px) {
  .header-shell {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .main-nav {
    order: 5;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 0 4px;
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .inner-hero-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-art {
    max-width: 720px;
    margin-inline: auto;
  }

  .illustrated-benefits {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card-large {
    min-height: auto;
  }

  .process-scenes {
    grid-template-columns: 1fr;
  }

  .scene-center {
    transform: none;
  }

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

  .inner-cards,
  .band-panel {
    grid-template-columns: 1fr;
  }

  .pricing-labels {
    display: none;
  }

  .plan dt {
    display: block;
    color: var(--muted);
    font-size: .83rem;
    font-weight: 800;
  }

  .plan dl div {
    place-items: stretch;
    text-align: left;
    gap: 4px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body::before {
    height: 6px;
  }

  .site-header {
    top: 6px;
    padding-top: 12px;
  }

  .header-shell {
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }

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

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.5rem);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-blob {
    min-height: 380px;
  }

  .inner-blob {
    min-height: 330px;
  }

  .dot-field {
    opacity: .45;
  }

  .proof-cards article {
    grid-template-columns: 1fr;
  }

  .proof-cards strong {
    grid-row: auto;
  }

  .form-row,
  .footer-grid,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-radius: 28px;
  }
}

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

/* V18 content system */
.site-header .header-shell {
  width: min(1220px, calc(100% - 40px));
}

.header-cta {
  white-space: nowrap;
}

.inner-hero + .inner-content {
  padding-top: clamp(48px, 6vw, 88px);
}

.hero-secondary {
  max-width: 680px;
  margin-top: 14px !important;
}

.section-actions {
  margin-top: 34px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink-2);
  font-family: Nunito, Inter, sans-serif;
  font-size: .88rem;
  font-weight: 900;
}

.case-stack {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(46px, 6vw, 78px);
}

.case-card {
  padding: clamp(24px, 4vw, 48px);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.case-card:nth-child(3n + 2) {
  background: #e2f6ef;
}

.case-card:nth-child(3n) {
  background: #fff3df;
}

.case-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.case-head h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.case-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-body section {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
}

.case-body h3 {
  font-size: 1.14rem;
}

.case-body p {
  margin: 10px 0 0;
  color: var(--ink-2);
}

.case-schema {
  grid-column: 1 / -1;
}

.case-schema p {
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
}

.form-help {
  margin: 0;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 700;
}

.legal-shell {
  max-width: 920px;
}

.legal-content article {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background: var(--paper);
}

.legal-content .section-heading h1 {
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

.legal-content h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.legal-content p,
.legal-content dd {
  color: var(--ink-2);
}

.legal-content dl {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  gap: 10px 24px;
  margin: 18px 0 0;
}

.legal-content dt {
  color: var(--ink);
  font-weight: 900;
}

.legal-content dd {
  margin: 0;
}

.footer-grid-v18 {
  grid-template-columns: 1.25fr repeat(4, minmax(130px, 1fr));
}

.footer-col h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.footer-col-main nav {
  margin-top: 22px;
}

@media (max-width: 1060px) {
  .footer-grid-v18 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-visuals-duo,
  .premium-visuals-trio {
    grid-template-columns: 1fr;
  }

  .premium-visuals-trio .premium-visual:first-child {
    grid-row: auto;
  }

  .case-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .premium-visuals {
    gap: 18px;
    margin: 30px 0 38px;
  }

  .premium-visual {
    min-height: 226px;
    border-radius: 28px;
  }

  .premium-visual img {
    width: min(112%, 640px);
    max-width: none;
  }

  .contact-card .premium-visual {
    min-height: 220px;
    margin-top: 24px;
  }

  .case-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-card {
    border-radius: 30px;
  }

  .case-body section {
    padding: 18px;
  }

  .legal-content dl,
  .footer-grid-v18 {
    grid-template-columns: 1fr;
  }
}
/* End V18 content system */

/* V19 deep content system */
.header-shell {
  position: relative;
}

.main-nav-v19 {
  gap: clamp(12px, 1.5vw, 22px);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-soft);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(980px, calc(100vw - 52px));
  padding: 24px;
  border: 1px solid rgba(207, 226, 221, .92);
  border-radius: 30px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 30px 80px rgba(20, 45, 58, .16);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.mega-menu p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.65;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mega-menu section {
  min-width: 0;
  padding: 16px;
  border-radius: 22px;
  background: var(--paper);
}

.mega-menu section:nth-child(2) {
  background: #e2f6ef;
}

.mega-menu section:nth-child(3) {
  background: #fff3df;
}

.mega-menu h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: .9rem;
  line-height: 1.25;
}

.mega-menu a {
  display: block;
  padding: 7px 0;
  border-radius: 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.35;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  color: var(--primary);
  background: transparent;
}

.inner-card-link {
  display: block;
  color: inherit;
}

.inner-card-link:hover h3,
.inner-card-link:focus-visible h3 {
  color: var(--primary);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  margin-top: clamp(36px, 5vw, 68px);
}

.detail-grid article {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  background: var(--paper);
}

.detail-grid article:nth-child(4n + 2) {
  background: #e2f6ef;
}

.detail-grid article:nth-child(4n + 3) {
  background: #fff3df;
}

.detail-grid h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
}

.detail-grid p {
  margin: 12px 0 0;
  color: var(--ink-2);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-weight: 650;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(116, 220, 197, .18);
}

.schema-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  margin-top: clamp(36px, 5vw, 68px);
}

.schema-panel {
  margin-top: clamp(34px, 5vw, 66px);
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 12%, rgba(116, 220, 197, .26), transparent 30%),
    linear-gradient(140deg, #fff, #f2faf8);
  border: 1px solid rgba(207, 226, 221, .8);
  box-shadow: var(--shadow-soft);
}

.schema-grid .schema-panel {
  margin-top: 0;
}

.schema-panel h3 {
  color: var(--primary);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.schema-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.schema-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--line);
}

.schema-flow strong {
  color: var(--amber-dark);
  font-size: 1.2rem;
}

@media (max-width: 1060px) {
  .main-nav-v19 {
    align-items: stretch;
    gap: 2px;
  }

  .nav-group {
    display: block;
  }

  .mega-menu {
    display: none;
  }

  .mega-grid,
  .detail-grid,
  .schema-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .detail-grid article,
  .schema-panel {
    border-radius: 28px;
  }

  .schema-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .schema-flow strong {
    justify-self: center;
  }
}
/* End V19 deep content system */

/* V20 editorial depth and harmonized mega menus */
.nav-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-panel-toggle {
  display: none;
}

.header-shell .nav-group {
  position: static;
}

.mega-menu-v20 {
  left: 50%;
  width: min(1120px, calc(100vw - 48px));
  min-height: 430px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 32px;
  transform: translate(-50%, 10px);
}

.nav-group:hover .mega-menu-v20,
.nav-group:focus-within .mega-menu-v20,
.nav-group[data-panel-open="true"] .mega-menu-v20 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-v20::before {
  inset: -34px 0 auto;
  height: 34px;
}

.mega-head {
  display: grid;
  grid-template-columns: minmax(170px, .28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(207, 226, 221, .86);
}

.mega-head strong {
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 1;
}

.mega-head p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.7;
}

.mega-menu-v20 .mega-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 20px);
  align-items: stretch;
}

.mega-menu-v20 section {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(207, 226, 221, .7);
  background: linear-gradient(180deg, #ffffff, #f2faf8);
}

.mega-menu-v20 section:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #e8f7f2);
}

.mega-menu-v20 section:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #fff5e4);
}

.mega-menu-v20 section:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, #edf7f8);
}

.mega-menu-v20 h2 {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mega-menu-v20 .mega-link {
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 9px 10px;
  border-radius: 16px;
}

.mega-menu-v20 .mega-link span {
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.2;
}

.mega-menu-v20 .mega-link em {
  color: var(--muted);
  font-size: .76rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.35;
}

.mega-menu-v20 .mega-link:hover,
.mega-menu-v20 .mega-link:focus-visible {
  background: rgba(116, 220, 197, .18);
}

.mega-footer-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white) !important;
  font-family: Nunito, Inter, sans-serif;
  font-size: .92rem;
  font-weight: 900;
}

.mega-footer-link:hover,
.mega-footer-link:focus-visible {
  background: var(--primary-dark);
  color: var(--white);
}

.link-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 5vw, 60px);
}

.link-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(207, 226, 221, .8);
  box-shadow: var(--shadow-soft);
}

.link-column h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 1.08rem;
}

.link-column a {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(207, 226, 221, .7);
}

.link-column span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.link-column em {
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.45;
}

.link-column a:hover span,
.link-column a:focus-visible span {
  color: var(--primary);
}

.method-timeline {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 60px);
}

.method-timeline article {
  display: grid;
  grid-template-columns: 54px minmax(160px, .65fr) minmax(0, 1.35fr);
  gap: 20px;
  align-items: start;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(207, 226, 221, .8);
  box-shadow: var(--shadow-soft);
}

.method-timeline article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 15px;
  background: var(--primary);
  color: var(--white);
  font-family: Nunito, Inter, sans-serif;
  font-weight: 950;
}

.method-timeline h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.method-timeline p {
  margin: 8px 0 0;
  color: var(--ink-2);
}

.method-timeline dl {
  display: grid;
  grid-template-columns: minmax(120px, .32fr) minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
}

.method-timeline dt {
  color: var(--primary);
  font-weight: 900;
}

.method-timeline dd {
  margin: 0;
  color: var(--ink-2);
}

.nav-link-account {
  color: var(--primary);
  background: var(--primary-soft);
}

.account-panel {
  display: grid;
  gap: 18px;
}

.account-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.account-form .form-actions .btn {
  min-width: 180px;
}

.account-switch {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-weight: 700;
}

.account-switch a,
.account-inline-link {
  color: var(--primary);
  font-weight: 900;
}

.account-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--primary-dark);
  font-weight: 850;
}

.account-status[data-kind="error"] {
  color: #b5422e;
}

.account-shell {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.account-summary {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.account-avatar {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  background: var(--primary);
  color: var(--white);
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
}

.account-kv {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.account-kv div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.account-kv dt {
  color: var(--primary);
  font-weight: 900;
}

.account-kv dd {
  margin: 0;
  color: var(--ink-2);
}

.account-dashboard-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.account-hero-panel,
.account-side-panel,
.account-work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 226, 221, .88);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.account-hero-panel {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  min-height: 460px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 42px;
}

.account-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 220, 197, .42), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.account-profile-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.account-profile-top h3,
.account-side-panel h3 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(2.45rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: 0;
}

.account-profile-top p:not(.overline),
.account-side-panel p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.account-status-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-status-grid div,
.account-mini-flow span {
  border: 1px solid rgba(207, 226, 221, .9);
  background: linear-gradient(180deg, rgba(242, 250, 248, .96), rgba(255, 255, 255, .94));
}

.account-status-grid div {
  display: grid;
  gap: 4px;
  min-height: 120px;
  padding: 16px;
  border-radius: 24px;
}

.account-status-grid span,
.account-work-card .card-number {
  color: var(--primary);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-status-grid strong {
  min-width: 0;
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.account-status-grid em {
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
  line-height: 1.45;
}

.account-kv-premium {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.account-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.account-side-panel {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 16%, rgba(242, 165, 29, .22), transparent 34%),
    linear-gradient(155deg, rgba(242, 250, 248, .96), rgba(221, 247, 242, .78));
}

.account-mini-flow {
  display: grid;
  gap: 10px;
}

.account-mini-flow span {
  display: block;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--ink);
  font-weight: 900;
}

.account-mini-flow strong {
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
}

.account-workspace-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(18px, 3vw, 30px);
}

.account-work-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  border-radius: 30px;
}

.account-work-card:nth-child(2) {
  background: rgba(221, 247, 242, .86);
}

.account-work-card:nth-child(3) {
  background: rgba(255, 248, 231, .9);
}

.account-work-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.account-work-card p {
  margin: 0;
  color: var(--ink-2);
}

@media (max-width: 1060px) {
  .nav-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    border-radius: 18px;
  }

  .nav-panel-toggle {
    display: inline-grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 16px;
    background: var(--paper);
    color: transparent;
    font-size: 0;
  }

  .nav-panel-toggle::before {
    content: "+";
    color: var(--primary);
    font-family: Nunito, Inter, sans-serif;
    font-size: 1.35rem;
    font-weight: 950;
    line-height: 1;
  }

  .nav-panel-toggle[aria-expanded="true"]::before {
    content: "−";
  }

  .main-nav[data-open="true"] .nav-group[data-panel-open="true"] .mega-menu-v20 {
    display: block;
  }

  .mega-menu-v20 {
    position: static;
    width: 100%;
    min-height: 0;
    margin: 6px 0 14px;
    padding: 14px;
    border-radius: 22px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-group:hover .mega-menu-v20,
  .nav-group:focus-within .mega-menu-v20,
  .nav-group[data-panel-open="true"] .mega-menu-v20 {
    transform: none;
  }

  .mega-head {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .mega-menu-v20 .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu-v20 section {
    min-height: 0;
    padding: 14px;
  }

  .mega-menu-v20 .mega-link {
    min-height: 0;
  }

  .mega-footer-link {
    width: 100%;
    justify-content: center;
  }

  .link-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-timeline article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .method-timeline dl {
    grid-column: 1 / -1;
  }

  .account-summary {
    grid-template-columns: 1fr;
  }

  .account-dashboard-premium {
    grid-template-columns: 1fr;
  }

  .account-hero-panel,
  .account-side-panel {
    min-height: 0;
  }

  .account-workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .mega-menu-v20 {
    padding: 12px;
  }

  .mega-head p,
  .mega-menu-v20 .mega-link em {
    display: none;
  }

  .mega-menu-v20 section {
    gap: 6px;
  }

  .mega-menu-v20 .mega-link {
    min-height: 0;
    padding: 10px 8px;
  }

  .link-matrix,
  .method-timeline article,
  .method-timeline dl {
    grid-template-columns: 1fr;
  }

  .method-timeline article > span {
    width: 40px;
    height: 40px;
  }

  .account-profile-top,
  .account-status-grid,
  .account-workspace-grid {
    grid-template-columns: 1fr;
  }

  .account-hero-panel,
  .account-side-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .account-profile-top h3,
  .account-side-panel h3 {
    max-width: none;
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .account-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* End V20 editorial depth */
