/* ============================================================
   Gen Coach — Landing Page
   Minimalist navy-on-warm-white. Hanken Grotesk + JetBrains Mono.
   ============================================================ */

:root {
  /* color */
  --canvas: #F7F6F3;
  --canvas-2: #F1EFEA;
  --surface: #FFFFFF;
  --ink: #15181E;
  --ink-soft: #3A4049;
  --muted: #6B7280;
  --faint: #9AA1AC;
  --line: #E7E4DD;
  --line-2: #EFEDE7;
  --accent: #5B4FE9;
  --accent-soft: #EEECFD;
  --green: #0EA66B;
  --green-soft: #E4F5EE;
  --amber: #F59E0B;
  --red: #EF4444;
  --blue: #3B82F6;
  --purple: #8B5CF6;
  --dark: #14171D;
  --dark-2: #1C2027;

  /* type */
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* radius */
  --r-sm: 9px;
  --r-md: 13px;
  --r-lg: 20px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* shadow */
  --sh-sm: 0 1px 2px rgba(20,23,29,.04), 0 1px 3px rgba(20,23,29,.05);
  --sh-md: 0 4px 14px rgba(20,23,29,.06), 0 2px 5px rgba(20,23,29,.04);
  --sh-lg: 0 24px 60px -22px rgba(20,23,29,.28), 0 10px 24px -16px rgba(20,23,29,.18);
  --sh-float: 0 40px 90px -40px rgba(20,23,29,.42), 0 18px 40px -28px rgba(20,23,29,.22);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--canvas); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; }
section { position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow.muted { color: var(--faint); }
.eyebrow::before {
  content: "";
  width: 18px; height: 1.5px;
  background: currentColor;
  opacity: .55;
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; }
h1 { font-size: clamp(40px, 6.4vw, 76px); font-weight: 800; }
h2 { font-size: clamp(31px, 4vw, 50px); }
h3 { font-size: clamp(20px, 2vw, 25px); letter-spacing: -0.025em; }
p { margin: 0; }
.lede { font-size: clamp(18px, 1.7vw, 21px); color: var(--ink-soft); line-height: 1.55; letter-spacing: -0.012em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; border-radius: var(--r-pill);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  padding: 14px 24px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-md); background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; transition: padding .3s var(--ease); }
.nav.scrolled { background: rgba(247,246,243,.82); backdrop-filter: saturate(150%) blur(14px); border-bottom-color: var(--line); }
.nav.scrolled .nav-inner { padding: 13px 0; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 19px; letter-spacing: -0.03em; white-space: nowrap; }
.brand .mark { width: 34px; height: 34px; border-radius: 10px; background: var(--ink); display: grid; place-items: center; flex: none; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--ink-soft); font-size: 15.5px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.nav-cta .btn { padding: 11px 20px; font-size: 15px; }
@media (max-width: 880px) { .nav-links { display: none; } .nav-cta .login { display: none; } }

/* ---------- hero ---------- */
.hero { padding: 168px 0 0; text-align: center; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 16%, transparent), transparent 62%);
  filter: blur(20px);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 7px 8px 7px 16px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--sh-sm); margin-bottom: 30px;
}
.hero-pill .tag {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em;
  background: var(--ink); color: #fff; padding: 4px 10px; border-radius: var(--r-pill); text-transform: uppercase;
}
.hero h1 { max-width: none; margin: 0 auto; }
.hero h1 br { display: block; }
.hero h1 .accent { color: var(--accent); }
.hero .lede { max-width: 50ch; margin: 26px auto 0; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-trust { margin-top: 22px; font-size: 14px; color: var(--faint); display: flex; gap: 9px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-trust .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); }

/* product shot */
.shot {
  position: relative; margin: 70px auto 0; max-width: 1080px;
  border-radius: var(--r-lg); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--sh-float);
  overflow: hidden;
}
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); background: #fcfbf9; }
.shot-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #DEDAD2; }
.shot-bar .addr { margin-left: 12px; flex: 1; max-width: 340px; height: 24px; border-radius: var(--r-pill); background: var(--canvas); border: 1px solid var(--line-2); display: flex; align-items: center; padding: 0 12px; font-family: var(--mono); font-size: 11px; color: var(--faint); }
.shot img { width: 100%; display: block; }
.shot-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(transparent, var(--canvas)); pointer-events: none; }

.hero-logos { margin-top: 60px; padding-bottom: 30px; }
.hero-logos .label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); text-align: center; }
.logo-row { display: flex; gap: 14px 38px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.logo-row .chip { font-size: 14px; font-weight: 600; color: var(--faint); letter-spacing: -0.01em; }

/* ---------- generic section header ---------- */
.sec { padding: 120px 0; }
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { margin-top: 18px; }
.sec-head p { margin-top: 18px; }

/* ---------- insight strip ---------- */
.insight { padding: 110px 0; text-align: center; }
.insight .big {
  font-size: clamp(26px, 3.6vw, 46px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.18;
  max-width: 20ch; margin: 0 auto; text-wrap: balance;
}
.insight .big .dim { color: var(--faint); }
.insight .sub { margin-top: 26px; color: var(--muted); font-size: 16px; }

/* ---------- how it works ---------- */
.loop { position: relative; }
.loop-track { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: var(--line); }
.loop-track .fill { position: absolute; top: 0; left: 0; right: 0; height: var(--p, 0%); background: linear-gradient(var(--accent), var(--green)); transition: height .15s linear; }
.steps { display: flex; flex-direction: column; gap: 30px; position: relative; z-index: 1; }
.step { display: grid; grid-template-columns: 1fr 76px 1fr; align-items: center; gap: 0; }
.step .card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 32px; box-shadow: var(--sh-sm); transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.step.in-view .card { box-shadow: var(--sh-md); }
.step:nth-child(odd) .card { grid-column: 1; text-align: right; }
.step:nth-child(odd) .visual { grid-column: 3; }
.step:nth-child(even) .card { grid-column: 3; }
.step:nth-child(even) .visual { grid-column: 1; }
.step .node {
  grid-column: 2; justify-self: center;
  width: 56px; height: 56px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--line); display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--faint);
  transition: all .4s var(--ease); position: relative; z-index: 2;
}
.step.in-view .node { border-color: var(--ink); color: var(--ink); background: var(--surface); }
.step .card h3 { margin-bottom: 9px; }
.step .card p { color: var(--muted); font-size: 15.5px; }
.step .kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.step .visual { padding: 0 8px; }
@media (max-width: 760px) {
  .loop-track { left: 27px; }
  .step { grid-template-columns: 56px 1fr; gap: 18px; }
  .step .node { grid-column: 1; }
  .step:nth-child(odd) .card, .step:nth-child(even) .card { grid-column: 2; text-align: left; }
  .step .visual { display: none; }
}

/* mini visuals inside steps */
.mini { border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); padding: 16px; box-shadow: var(--sh-sm); font-size: 13px; }
.mini .row { display: flex; align-items: flex-start; gap: 9px; padding: 5px 0; color: var(--ink-soft); }
.mini .bdot { width: 9px; height: 9px; border-radius: 50%; flex: none; margin-top: 6px; }
.mini-score { display: flex; align-items: center; gap: 16px; }
.mini-score .num { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; }
.mini-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mini-bars .bar { height: 7px; border-radius: var(--r-pill); background: var(--canvas-2); overflow: hidden; }
.mini-bars .bar i { display: block; height: 100%; border-radius: var(--r-pill); }

/* ---------- try it ---------- */
.tryit { padding: 120px 0; }
.try-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: 14px; max-width: 960px; margin: 48px auto 0; overflow: hidden;
}
.try-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
@media (max-width: 820px) { .try-inner { grid-template-columns: 1fr; } }
.try-left { padding: 34px; display: flex; flex-direction: column; }
.try-left .glabel { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.try-input {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-md); resize: none;
  padding: 16px; font-family: var(--sans); font-size: 16.5px; color: var(--ink); line-height: 1.45;
  background: var(--canvas); transition: border-color .2s, background .2s; min-height: 96px;
}
.try-input:focus { outline: none; border-color: var(--accent); background: #fff; }
.try-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.try-chip {
  border: 1px solid var(--line); background: var(--surface); border-radius: var(--r-pill);
  padding: 8px 14px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); transition: all .2s var(--ease);
}
.try-chip:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.try-left .btn { margin-top: auto; align-self: flex-start; }
.try-note { font-size: 12.5px; color: var(--faint); margin-top: 14px; }

.try-right { background: var(--dark); border-radius: calc(var(--r-xl) - 14px); padding: 30px; color: #fff; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.try-right .placeholder { margin: auto; text-align: center; color: rgba(255,255,255,.4); }
.try-right .placeholder .pmark { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.06); display: grid; place-items: center; margin: 0 auto 16px; }
.try-result { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.try-score { display: flex; align-items: center; gap: 18px; }
.try-gauge { position: relative; width: 80px; height: 80px; flex: none; }
.try-gauge svg { transform: rotate(-90deg); }
.try-gauge .gval { position: absolute; inset: 0; display: grid; place-items: center; font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.try-score .meta .t { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.try-score .meta .v { font-size: 15px; font-weight: 600; color: #fff; margin-top: 3px; }
.try-block .bt { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.try-block .bt .pill { background: rgba(91,79,233,.18); padding: 2px 8px; border-radius: var(--r-pill); }
.try-li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.4; }
.try-li .ic { flex: none; margin-top: 2px; color: var(--green); }
.try-li .ic.a { color: var(--accent); }
.try-divider { height: 1px; background: rgba(255,255,255,.08); }
.reveal-stagger > * { opacity: 0; transform: translateY(8px); animation: fadeUp .5s var(--ease) forwards; }

@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { display: inline-grid; place-items: center; animation: spin 1s linear infinite; }

/* ---------- features ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.feat:nth-child(even) .feat-copy { order: 2; }
.feat-copy h2 { margin: 16px 0 18px; }
.feat-copy .lede { font-size: 18px; }
.feat-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.feat-list .fli { display: flex; gap: 12px; align-items: flex-start; }
.feat-list .fli .ic { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 2px; }
.feat-list .fli .ic.g { background: var(--green-soft); color: var(--green); }
.feat-list .fli b { font-weight: 600; }
.feat-list .fli span { color: var(--muted); font-size: 15px; }
.feat-shot {
  border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--sh-lg); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.feat-shot .shot-bar { padding: 11px 14px; }
.feat-shot .shot-bar .dot { width: 9px; height: 9px; }
.feat-shot img { width: 100%; }
@media (max-width: 880px) {
  .feat { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feat:nth-child(even) .feat-copy { order: 0; }
}

/* ---------- differentiator (comparison) ---------- */
.compare { margin-top: 52px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--sh-sm); }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 20px; text-align: center; font-size: 15px; }
.compare thead th { font-weight: 600; border-bottom: 1px solid var(--line); background: #fcfbf9; }
.compare thead th:first-child { text-align: left; }
.compare thead th.us { background: var(--ink); color: #fff; position: relative; }
.compare tbody td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare tbody td { color: var(--muted); border-bottom: 1px solid var(--line-2); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td.us { background: color-mix(in srgb, var(--ink) 3.5%, transparent); color: var(--ink); font-weight: 600; }
.compare .yes { color: var(--green); }
.compare .no { color: var(--faint); }
@media (max-width: 720px) { .compare { font-size: 13px; overflow-x: auto; } .compare th, .compare td { padding: 12px; } }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 52px auto 0; }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh-sm); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.price-card.pro { background: var(--dark); color: #fff; border-color: var(--dark); }
.price-card .pname { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.price-card.pro .pname { color: rgba(255,255,255,.55); }
.price-card .amount { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.price-card .amount .n { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; }
.price-card .amount .per { font-size: 15px; color: var(--muted); }
.price-card.pro .amount .per { color: rgba(255,255,255,.55); }
.price-card .pdesc { font-size: 14.5px; color: var(--muted); min-height: 42px; }
.price-card.pro .pdesc { color: rgba(255,255,255,.6); }
.price-card .plist { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.price-card .plist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.price-card.pro .plist li { color: rgba(255,255,255,.82); }
.price-card .plist .ic { flex: none; color: var(--green); margin-top: 3px; }
.price-card .btn { width: 100%; }
.price-card .badge { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 5px 11px; border-radius: var(--r-pill); }
.price-foot { text-align: center; margin-top: 22px; font-size: 14px; color: var(--faint); }

/* ---------- final cta ---------- */
.final { margin: 60px auto 100px; max-width: 1116px; }
.final-inner { background: var(--dark); border-radius: var(--r-xl); padding: clamp(48px, 7vw, 96px) 40px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.final-glow { position: absolute; bottom: -160px; left: 50%; transform: translateX(-50%); width: 700px; height: 420px; background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 42%, transparent), transparent 65%); filter: blur(30px); pointer-events: none; }
.final-inner .mark { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.07); display: grid; place-items: center; margin: 0 auto 28px; position: relative; z-index: 1; }
.final-inner h2 { position: relative; z-index: 1; max-width: 16ch; margin: 0 auto; }
.final-inner p { position: relative; z-index: 1; color: rgba(255,255,255,.62); margin: 22px auto 0; max-width: 44ch; font-size: 18px; }
.final-inner .hero-cta { position: relative; z-index: 1; margin-top: 38px; }
.final-inner .hero-trust { color: rgba(255,255,255,.45); }
.final-inner .hero-trust .dot { background: rgba(255,255,255,.45); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 60px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand { margin-bottom: 14px; }
.footer .ftag { color: var(--muted); font-size: 14.5px; max-width: 30ch; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; font-weight: 600; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--faint); }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
.shot[data-reveal] { transform: translateY(40px) scale(.985); }
.shot[data-reveal].in-view { transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .reveal-stagger > * { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* tweaks panel mount safety */
#tweaks-root:empty { display: none; }
