:root {
  --night: #071B34;
  --dark: #08111F;
  --dark-2: #0B223F;
  --cyan: #18D2E6;
  --mint: #37E6B0;
  --bg: #F4F8FB;
  --text: #071B34;
  --muted: #6B7A90;
  --line: rgba(7, 27, 52, .1);
  --glass: rgba(255, 255, 255, .66);
  --radius: 18px; /* design base: border-radius 18px */
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(7, 27, 52, .14);
  --glow: 0 0 28px rgba(24, 210, 230, .36), 0 0 70px rgba(24, 210, 230, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(24, 210, 230, .18), transparent 30rem),
    radial-gradient(circle at 85% 15%, rgba(55, 230, 176, .12), transparent 26rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection { background: rgba(24,210,230,.28); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(50px);
  opacity: .42;
}
.page-glow-a { background: rgba(24, 210, 230, .33); top: -12rem; left: -10rem; }
.page-glow-b { background: rgba(55, 230, 176, .24); right: -12rem; top: 18rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(244, 248, 251, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.15rem;
}
.brand-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  color: white;
  background: radial-gradient(circle at 35% 25%, #fff 0, var(--cyan) 16%, #0C5D89 48%, var(--night) 78%);
  box-shadow: var(--glow);
}
.brand-text { text-transform: lowercase; }
.logo-brand {
  height: 3.4rem;
  width: 11.5rem;
  min-width: 11.5rem;
  padding: .25rem .95rem .25rem .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 34px rgba(7,27,52,.08);
  overflow: hidden;
}
.logo-brand img {
  height: 2.85rem;
  width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(24,210,230,.34));
}
.footer-logo { background: rgba(255,255,255,.08); border-color: rgba(24,210,230,.18); }

nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 700;
  color: rgba(7, 27, 52, .72);
}
nav a { transition: color .2s ease, transform .2s ease; }
nav a:hover { color: var(--night); transform: translateY(-1px); }
.nav-cta {
  color: var(--night);
  background: rgba(24, 210, 230, .18);
  border: 1px solid rgba(24, 210, 230, .35);
  padding: .68rem 1rem;
  border-radius: 999px;
}

main, .site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Sora, Inter, sans-serif;
  letter-spacing: -.055em;
  color: var(--night);
}
h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7.3vw, 6.6rem);
  line-height: .9;
  margin-bottom: 1.35rem;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: .4rem;
}
.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}
.muted { color: var(--muted); max-width: 47rem; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 2rem 0 1.35rem;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: .98rem 1.35rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 12px 32px rgba(24, 210, 230, .28), 0 0 40px rgba(24, 210, 230, .16);
}
.ghost {
  color: var(--night);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(7,27,52,.12);
  backdrop-filter: blur(16px);
}
.light { background: white; color: var(--night); box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  color: rgba(7, 27, 52, .72);
  font-weight: 700;
  font-size: .92rem;
}
.trust-row span {
  padding: .52rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.85);
}

.assistant-stage {
  position: relative;
  min-height: 35rem;
  border-radius: 2.4rem;
  background:
    linear-gradient(145deg, rgba(7, 27, 52, .96), rgba(8, 17, 31, .98)),
    var(--night);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
  padding: 1.35rem;
}
.assistant-stage::before {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,210,230,.32), transparent 62%);
  top: -7rem;
  right: -8rem;
}
.assistant-stage::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(24, 210, 230, .16);
  pointer-events: none;
}

.fairy-orb {
  position: absolute;
  z-index: 2;
  top: 3.2rem;
  right: 4.1rem;
  width: 8.2rem;
  height: 8.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-family: Sora, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: radial-gradient(circle at 40% 28%, #fff 0 4%, #8FF8FF 8%, var(--cyan) 24%, #13618E 52%, #071B34 78%);
  box-shadow: 0 0 30px rgba(24,210,230,.54), 0 0 120px rgba(24,210,230,.32);
  animation: float 6s ease-in-out infinite;
}
.fairy-core { position: relative; z-index: 2; text-shadow: 0 0 20px rgba(255,255,255,.8); }
.wing {
  position: absolute;
  width: 4.2rem;
  height: 6.2rem;
  border-radius: 70% 30% 70% 30%;
  background: linear-gradient(160deg, rgba(255,255,255,.82), rgba(24,210,230,.18));
  filter: blur(.2px);
  opacity: .64;
}
.wing-left { left: -2.2rem; transform: rotate(-32deg); }
.wing-right { right: -2.2rem; transform: rotate(32deg) scaleX(-1); }

.logo-orb {
  position: absolute;
  z-index: 2;
  top: 2.6rem;
  right: 2.4rem;
  width: min(25rem, calc(100% - 4rem));
  aspect-ratio: 919 / 626;
  display: grid;
  place-items: center;
  border-radius: 2rem;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.82), rgba(24,210,230,.08));
  border: 1px solid rgba(24,210,230,.2);
  box-shadow: 0 0 34px rgba(24,210,230,.28), 0 0 110px rgba(24,210,230,.18);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.logo-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 18px rgba(24,210,230,.25));
}
.logo-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 45%, transparent 38%, rgba(7,27,52,.1) 62%, rgba(7,27,52,.42) 100%);
  pointer-events: none;
}

.dashboard-card {
  position: absolute;
  z-index: 3;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
  color: white;
}
.savings-card {
  left: 1.45rem;
  bottom: 2rem;
  width: min(18rem, calc(100% - 2.9rem));
  padding: 1.35rem;
}
.card-kicker { color: rgba(255,255,255,.62); font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.savings-card strong { font-family: Sora, sans-serif; font-size: 4.3rem; line-height: 1; letter-spacing: -.08em; color: var(--mint); }
.savings-card .percent { color: var(--mint); font-size: 2rem; font-weight: 800; }
.savings-card p { margin: .4rem 0 0; color: rgba(255,255,255,.72); }
.chart-card {
  right: 1.45rem;
  bottom: 8.5rem;
  width: 17rem;
  padding: 1.1rem;
}
.chart-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: rgba(255,255,255,.86); font-weight: 800; }
.chart-header small { color: var(--cyan); }
.bars { height: 8rem; display: flex; align-items: end; gap: .55rem; padding-top: 1.1rem; }
.bars span {
  flex: 1;
  height: var(--h);
  min-height: 1.4rem;
  border-radius: .8rem .8rem .35rem .35rem;
  background: linear-gradient(180deg, var(--cyan), var(--mint));
  box-shadow: 0 0 24px rgba(24,210,230,.28);
}
.insight-pill {
  position: absolute;
  z-index: 4;
  left: 2rem;
  top: 2rem;
  color: var(--night);
  font-weight: 800;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  padding: .68rem .9rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 3.5rem;
}
.metrics article {
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 40px rgba(7,27,52,.08);
}
.metrics strong { display: block; font-family: Sora, sans-serif; font-size: 2rem; letter-spacing: -.06em; color: var(--night); }
.metrics span { color: var(--muted); font-weight: 700; }

.section { padding: 5.2rem 0; }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 3rem; align-items: start; }
.section-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feature-grid article,
.provider-card,
.insight-card,
.steps article,
.calculator,
.lead-form {
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 55px rgba(7, 27, 52, .09);
  backdrop-filter: blur(18px);
}
.feature-grid article { padding: 1.35rem; transition: transform .2s ease, box-shadow .2s ease; }
.feature-grid article:hover, .provider-card:hover, .insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow), 0 0 46px rgba(24,210,230,.12); }
.icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1rem;
  border-radius: .9rem;
  color: var(--night);
  background: linear-gradient(135deg, rgba(24,210,230,.28), rgba(55,230,176,.22));
  font-weight: 900;
}
.feature-grid p, .provider-card p, .insight-card p, .steps p { color: var(--muted); margin-bottom: 0; }

.section-heading { margin-bottom: 2rem; }
.calculator-section {
  padding: 5rem clamp(1rem, 4vw, 3rem);
  border-radius: 2.4rem;
  background: linear-gradient(145deg, rgba(7, 27, 52, .98), rgba(8, 17, 31, .98));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.calculator-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,210,230,.24), transparent 64%);
}
.calculator-section h2, .calculator-section .center { color: white; }
.calculator-section .muted { color: rgba(255,255,255,.64); }
.calculator {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
}
label { display: grid; gap: .45rem; color: rgba(255,255,255,.86); font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(7, 27, 52, .12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  color: var(--night);
  padding: .98rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(24,210,230,.15), 0 0 30px rgba(24,210,230,.12); background: white; }
.input-suffix { display: flex; align-items: center; gap: .45rem; color: white; font-weight: 900; }
select { appearance: none; cursor: pointer; }
.calculator button, .result { grid-column: 1 / -1; }
.result {
  display: grid;
  gap: .2rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(55,230,176,.22);
  color: white;
}
.result strong { font-family: Sora, sans-serif; font-size: clamp(1.05rem, 2.2vw, 1.7rem); line-height: 1.25; letter-spacing: -.035em; color: white; text-shadow: none; }
.result span, .result small { color: rgba(255,255,255,.66); font-weight: 800; }

.provider-cards, .insight-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.provider-card, .insight-card { padding: 1.35rem; transition: transform .2s ease, box-shadow .2s ease; }
.provider-card.featured, .insight-card.featured { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(234,252,255,.86)); border-color: rgba(24,210,230,.42); }
.provider-logo {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  color: var(--night);
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  font-weight: 900;
  margin-bottom: 1rem;
}
dl { margin: 1.4rem 0 0; display: grid; gap: .65rem; }
dl div { display: flex; justify-content: space-between; gap: 1rem; padding-top: .65rem; border-top: 1px solid rgba(7,27,52,.08); }
dt { color: var(--muted); font-weight: 700; }
dd { margin: 0; font-weight: 900; color: var(--night); }
.positive { color: #11A77E; }

.process {
  position: relative;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.steps article { padding: 1.35rem; }
.steps span { display: inline-flex; color: var(--cyan); font-family: Sora, sans-serif; font-weight: 900; margin-bottom: 1.1rem; }

.cta-panel {
  margin: 4rem 0 5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
  border-radius: 2.4rem;
  color: white;
  background:
    radial-gradient(circle at 15% 10%, rgba(24,210,230,.22), transparent 28rem),
    linear-gradient(145deg, var(--night), var(--dark));
  box-shadow: var(--shadow);
}
.cta-panel h2 { color: white; }
.cta-panel p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
  padding: 1rem;
}
.wide { grid-column: 1 / -1; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}
.consent input { width: auto; margin-top: .25rem; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.4rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(7,27,52,.08);
  color: var(--muted);
}
.site-footer > div { display: grid; gap: .35rem; }
.footer-mission { max-width: 34rem; }
.footer-mission strong { color: var(--night); font-family: Sora, Inter, sans-serif; letter-spacing: -.035em; }
.footer-trust { text-align: right; font-weight: 800; font-size: .9rem; }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .75s ease forwards; }
.reveal:nth-child(2) { animation-delay: .08s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@media (max-width: 940px) {
  nav a:not(.nav-cta) { display: none; }
  .hero, .split, .cta-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .assistant-stage { min-height: 32rem; }
  .metrics, .provider-cards, .steps { grid-template-columns: 1fr; }
  .site-footer > div { text-align: left; }
}
@media (max-width: 680px) {
  main, .site-footer { width: min(100% - 1rem, 1180px); }
  .site-header { padding: .8rem 1rem; }
  .nav-cta { padding: .58rem .8rem; }
  .brand-text { font-size: 1rem; }
  .hero { padding-top: 2.8rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .calculator, .feature-grid, .lead-form { grid-template-columns: 1fr; }
  .chart-card { right: 1rem; bottom: 9rem; width: calc(100% - 2rem); }
  .savings-card { left: 1rem; bottom: 1rem; }
  .logo-orb { right: 1rem; top: 2rem; width: calc(100% - 2rem); }
  .metrics { margin-top: .5rem; }
  .section { padding: 3.4rem 0; }
  .calculator-section, .cta-panel { border-radius: 1.6rem; }
}

/* Masterplan v1.0 refinements */
main, .site-footer {
  width: min(1440px, calc(100% - 2rem));
}

.hero-visual {
  position: relative;
  min-height: 40rem;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 72% 18%, rgba(24,210,230,.25), transparent 20rem),
    linear-gradient(145deg, rgba(7, 27, 52, .96), rgba(8, 17, 31, .98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
  padding: 1.35rem;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(24, 210, 230, .16);
  pointer-events: none;
}

.phone-mockup {
  position: absolute;
  z-index: 3;
  left: 2.2rem;
  top: 3.6rem;
  width: min(17.5rem, 46%);
  height: 32rem;
  border-radius: 2.1rem;
  padding: .7rem;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.34), 0 0 55px rgba(24,210,230,.12);
  backdrop-filter: blur(20px);
  transform: rotate(-3deg);
}
.phone-top {
  height: 1.5rem;
  display: grid;
  place-items: center;
}
.phone-top span {
  width: 4.8rem;
  height: .42rem;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}
.phone-screen {
  height: calc(100% - 1.5rem);
  border-radius: 1.55rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(24,210,230,.2), transparent 12rem),
    #071B34;
  color: white;
  overflow: hidden;
}
.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: rgba(255,255,255,.62);
  font-weight: 800;
}
.screen-header strong {
  font-family: Sora, sans-serif;
  color: var(--mint);
  font-size: 2rem;
  line-height: 1;
}
.score-ring {
  width: 10.8rem;
  height: 10.8rem;
  margin: 2.2rem auto 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at center, #071B34 0 54%, transparent 55%),
    conic-gradient(var(--cyan), var(--mint) 74%, rgba(255,255,255,.12) 75%);
  box-shadow: 0 0 45px rgba(24,210,230,.22);
}
.score-ring span {
  font-family: Sora, sans-serif;
  color: var(--mint);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.06em;
}
.score-ring small { color: rgba(255,255,255,.62); font-weight: 800; }
.mini-list { display: grid; gap: .7rem; }
.mini-list div {
  display: flex;
  justify-content: space-between;
  gap: .7rem;
  padding: .75rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.mini-list span { color: rgba(255,255,255,.62); font-weight: 700; }
.mini-list strong { color: white; }

.hero-visual .logo-orb {
  top: 2.1rem;
  right: 1.8rem;
  width: min(24rem, 56%);
}
.hero-visual .chart-card {
  right: 1.45rem;
  bottom: 9.4rem;
}
.hero-visual .savings-card {
  left: auto;
  right: 2rem;
  bottom: 1.8rem;
}
.hero-visual .insight-pill {
  left: 2.1rem;
  top: auto;
  bottom: 2rem;
  max-width: 18rem;
}

.logo-cloud {
  margin: 1.2rem 0 4rem;
  padding: 1.1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 44px rgba(7,27,52,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-weight: 750;
}
.logo-cloud p { margin: 0; white-space: nowrap; }
.logo-cloud div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
  flex-wrap: wrap;
}
.logo-cloud span {
  color: rgba(7,27,52,.72);
  padding: .5rem .8rem;
  border-radius: 999px;
  background: rgba(244,248,251,.9);
  border: 1px solid rgba(7,27,52,.06);
}

.dashboard-section {
  padding-inline: clamp(1rem, 4vw, 3rem);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(24,210,230,.14), transparent 26rem),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.42));
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.dashboard-preview {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
  align-items: stretch;
}
.dashboard-main {
  min-height: 26rem;
  padding: 1.35rem;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--night), var(--dark));
  color: white;
  box-shadow: 0 24px 70px rgba(7,27,52,.22);
  overflow: hidden;
  position: relative;
}
.dashboard-main::before {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  right: -8rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(24,210,230,.2), transparent 62%);
}
.dash-topline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.dash-topline div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.dash-topline span { display: block; color: rgba(255,255,255,.6); font-weight: 750; margin-bottom: .35rem; }
.dash-topline strong { font-family: Sora, sans-serif; font-size: 1.65rem; letter-spacing: -.05em; }
.dash-chart {
  position: relative;
  z-index: 2;
  height: 12rem;
  display: flex;
  align-items: end;
  gap: .8rem;
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.dash-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 1rem 1rem .45rem .45rem;
  background: linear-gradient(180deg, var(--cyan), var(--mint));
  box-shadow: 0 0 28px rgba(24,210,230,.24);
}
.ai-note {
  position: relative;
  z-index: 2;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(24,210,230,.11);
  border: 1px solid rgba(24,210,230,.24);
  color: rgba(255,255,255,.78);
  font-weight: 750;
}
.provider-cards.compact {
  grid-template-columns: 1fr;
}
.provider-cards.compact .provider-card {
  min-height: 12.35rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-grid article,
.faq-list details {
  border-radius: var(--radius);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 55px rgba(7,27,52,.08);
  backdrop-filter: blur(18px);
}
.testimonial-grid article {
  padding: 1.35rem;
}
.testimonial-grid p {
  color: var(--night);
  font-weight: 750;
  font-size: 1.05rem;
}
.testimonial-grid span {
  color: var(--muted);
  font-weight: 800;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: .9rem;
}
.faq-list details {
  padding: 1.1rem 1.25rem;
}
.faq-list summary {
  cursor: pointer;
  font-family: Sora, sans-serif;
  font-weight: 800;
  color: var(--night);
}
.faq-list p {
  margin: .8rem 0 0;
  color: var(--muted);
}

.site-footer {
  width: 100%;
  max-width: none;
  padding: 2rem clamp(1rem, 4vw, 4.5rem) 3rem;
  background: linear-gradient(145deg, var(--night), var(--dark));
  border-top: 1px solid rgba(24,210,230,.14);
  color: rgba(255,255,255,.68);
}

@media (max-width: 940px) {
  .hero-visual { min-height: 43rem; }
  .logo-cloud { border-radius: 1.5rem; align-items: flex-start; flex-direction: column; }
  .logo-cloud p { white-space: normal; }
  .dashboard-preview, .dash-topline, .testimonial-grid { grid-template-columns: 1fr; }
  .hero-visual .logo-orb { width: min(22rem, calc(100% - 2rem)); right: 1rem; }
  .phone-mockup { width: min(17rem, 58%); left: 1rem; }
}

@media (max-width: 680px) {
  main { width: min(100% - 1rem, 1440px); }
  .hero-visual { min-height: 50rem; }
  .phone-mockup {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 18rem);
    margin: 1rem auto 0;
    transform: none;
  }
  .hero-visual .logo-orb {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 1rem;
  }
  .hero-visual .chart-card,
  .hero-visual .savings-card,
  .hero-visual .insight-pill {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 1rem;
  }
  .logo-cloud div { justify-content: flex-start; }
  .dash-topline strong { font-size: 1.25rem; }
}


/* Logo transparency fix: no dark box behind PNG/SVG-like logo */
.logo-brand,
.logo-brand.footer-logo {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 12.5rem;
  min-width: 12.5rem;
  height: 3.8rem;
}
.logo-brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 0 10px rgba(24,210,230,.18));
}
.logo-orb {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.logo-orb img {
  object-fit: contain !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 0 22px rgba(24,210,230,.32));
}
.logo-orb::after {
  display: none !important;
}
.site-footer .logo-brand {
  background: transparent !important;
}

/* Logo size adjustment */
.logo-brand,
.logo-brand.footer-logo {
  width: 17rem !important;
  min-width: 17rem !important;
  height: 5.1rem !important;
}
.hero-visual .logo-orb {
  width: min(31rem, 68%) !important;
  top: 1.35rem !important;
  right: .9rem !important;
}
@media (max-width: 940px) {
  .logo-brand,
  .logo-brand.footer-logo {
    width: 14rem !important;
    min-width: 14rem !important;
    height: 4.3rem !important;
  }
  .hero-visual .logo-orb {
    width: min(28rem, calc(100% - 2rem)) !important;
  }
}
@media (max-width: 680px) {
  .logo-brand,
  .logo-brand.footer-logo {
    width: 11.5rem !important;
    min-width: 11.5rem !important;
    height: 3.6rem !important;
  }
  .hero-visual .logo-orb {
    width: 100% !important;
  }
}

/* Premium refinement pass — navbar, logo, ambient glow, form polish */
.site-header {
  min-height: 6.35rem;
  padding: 1.35rem clamp(1.4rem, 4.5vw, 5.25rem) !important;
  background: rgba(244, 248, 251, .78);
}
.site-header nav {
  gap: 1.6rem;
}
.site-header nav a {
  padding: .45rem .15rem;
}
.site-header .nav-cta {
  padding: .82rem 1.18rem;
  box-shadow: 0 10px 28px rgba(24,210,230,.13);
}
.logo-brand,
.logo-brand.footer-logo {
  width: 20rem !important;
  min-width: 20rem !important;
  height: 5.8rem !important;
}
.site-header .logo-brand {
  margin-left: .35rem;
}

/* More intentional ambient light: less fog, more premium radial spots */
.page-glow {
  opacity: .28 !important;
  filter: blur(72px) !important;
}
.page-glow-a {
  width: 24rem !important;
  height: 24rem !important;
  top: -8rem !important;
  left: 8vw !important;
  background: rgba(24,210,230,.26) !important;
}
.page-glow-b {
  width: 28rem !important;
  height: 28rem !important;
  right: 8vw !important;
  top: 24rem !important;
  background: rgba(55,230,176,.16) !important;
}
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(24,210,230,.12), transparent 25rem),
    radial-gradient(circle at 82% 16%, rgba(55,230,176,.08), transparent 22rem),
    linear-gradient(180deg, #F7FAFD 0%, var(--bg) 42%, #EEF5FA 100%) !important;
}
.hero-visual {
  background:
    radial-gradient(circle at 72% 18%, rgba(24,210,230,.22), transparent 16rem),
    radial-gradient(circle at 34% 74%, rgba(55,230,176,.10), transparent 14rem),
    linear-gradient(145deg, rgba(7, 27, 52, .97), rgba(8, 17, 31, .99)) !important;
}
.calculator-section,
.dashboard-section,
.cta-panel {
  position: relative;
  isolation: isolate;
}
.calculator-section::before,
.dashboard-main::before {
  opacity: .72;
  filter: blur(8px);
}

/* Fee is premium guide: keep it dominant only in hero, not noisy */
.hero-visual .logo-orb {
  width: min(34rem, 72%) !important;
  top: 1rem !important;
  right: .35rem !important;
  opacity: .96;
}
.logo-orb img {
  filter: drop-shadow(0 0 18px rgba(24,210,230,.24)) !important;
}
.insight-pill {
  box-shadow: 0 18px 44px rgba(0,0,0,.16), 0 0 30px rgba(24,210,230,.12) !important;
}

/* Luxury form treatment */
.cta-panel {
  padding: clamp(1.6rem, 4.4vw, 2.8rem) !important;
  gap: clamp(2rem, 4vw, 3.5rem) !important;
}
.lead-form {
  padding: 1.35rem !important;
  gap: 1.15rem !important;
  border-radius: 26px !important;
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 70px rgba(0,0,0,.16) !important;
}
.lead-form label {
  gap: .62rem !important;
  letter-spacing: -.01em;
}
.lead-form input,
.lead-form textarea {
  min-height: 3.45rem;
  border-radius: 20px !important;
  padding: 1.05rem 1.12rem !important;
  background: rgba(255,255,255,.93) !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 30px rgba(0,0,0,.08);
}
.lead-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(24,210,230,.9) !important;
  box-shadow: 0 0 0 4px rgba(24,210,230,.16), 0 0 34px rgba(24,210,230,.16), inset 0 1px 0 rgba(255,255,255,.8) !important;
}
.cta-panel .lead-form .button.light {
  color: var(--night) !important;
  background: linear-gradient(135deg, var(--cyan), var(--mint)) !important;
  box-shadow: 0 16px 42px rgba(24,210,230,.28), 0 0 52px rgba(24,210,230,.16) !important;
  min-height: 3.65rem;
  font-size: 1rem;
}
.cta-panel .lead-form .button.light:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 56px rgba(24,210,230,.34), 0 0 70px rgba(24,210,230,.2) !important;
}

/* Slightly more premium hover motion without going flashy */
.feature-grid article,
.provider-card,
.testimonial-grid article,
.faq-list details,
.metrics article {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.testimonial-grid article:hover,
.faq-list details:hover,
.metrics article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 62px rgba(7,27,52,.11), 0 0 36px rgba(24,210,230,.08);
  border-color: rgba(24,210,230,.22);
}

@media (max-width: 940px) {
  .site-header {
    min-height: 5.7rem;
    padding: 1rem 1.25rem !important;
  }
  .logo-brand,
  .logo-brand.footer-logo {
    width: 16rem !important;
    min-width: 16rem !important;
    height: 4.8rem !important;
  }
}
@media (max-width: 680px) {
  .site-header {
    min-height: 5rem;
    padding: .85rem 1rem !important;
  }
  .logo-brand,
  .logo-brand.footer-logo {
    width: 12.6rem !important;
    min-width: 12.6rem !important;
    height: 3.9rem !important;
  }
  .site-header .nav-cta {
    padding: .68rem .88rem;
  }
  .lead-form {
    padding: 1rem !important;
  }
}

@media (max-width: 680px) {
  .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch !important;
    overflow: hidden !important;
  }
  .hero > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .hero-visual {
    justify-self: stretch !important;
    inline-size: 100% !important;
    contain: layout paint;
  }
  .hero-visual > * {
    max-inline-size: 100% !important;
  }
}
.upload-field small {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}
.upload-field input[type="file"] {
  padding: .92rem;
  cursor: pointer;
}


/* Final critical FeeCheck identity corrections */
.upload-field {
  position: relative;
  padding: 1rem;
  border: 1px dashed rgba(24,210,230,.55);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
}
.upload-field::before {
  content: "AI prüft Dokumentstruktur · OCR · Gebührenbegriffe";
  display: inline-flex;
  width: fit-content;
  margin-bottom: .65rem;
  padding: .38rem .62rem;
  border-radius: 999px;
  color: var(--night);
  background: linear-gradient(135deg, rgba(24,210,230,.94), rgba(55,230,176,.92));
  font-size: .75rem;
  font-weight: 900;
}
.analysis-result {
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(24,210,230,.08));
  border-color: rgba(24,210,230,.26);
}
.qualitative {
  grid-template-columns: 1fr 1fr;
}
.qualitative div {
  display: grid;
  gap: .35rem;
}
.qualitative small {
  color: var(--muted);
  font-weight: 700;
}
.ai-explainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin: 1rem 0;
}
.ai-explainer article {
  padding: .95rem;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(7,27,52,.08);
}
.ai-explainer strong {
  display: block;
  color: var(--night);
  font-family: Sora, Inter, sans-serif;
  margin-bottom: .2rem;
}
.ai-explainer span { color: var(--muted); font-weight: 700; }
.insight-cards { grid-template-columns: 1fr; }
.trust-footer {
  border-top-color: rgba(24,210,230,.18);
}
@media (max-width: 940px) {
  .site-footer { grid-template-columns: 1fr; }
  .footer-trust { text-align: left; }
  .qualitative, .ai-explainer { grid-template-columns: 1fr; }
}

/* Logo final placement correction: flat header, readable footer on dark background */
.site-header .logo-brand {
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  box-shadow: none !important;
}
.site-header .logo-brand img {
  border-radius: 0 !important;
  background: transparent !important;
}
.site-footer .footer-logo {
  border-radius: 22px !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.16), 0 0 28px rgba(24,210,230,.10) !important;
  padding: .45rem .75rem !important;
  overflow: hidden !important;
}
.site-footer .footer-logo img {
  border-radius: 0 !important;
  background: transparent !important;
  filter: none !important;
}

/* Final logo fix: pure vector/CSS logo, no image background, no rounded image tile */
.logo-brand.text-logo,
.site-header .logo-brand.text-logo,
.site-footer .footer-logo.text-logo {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .72rem !important;
}
.logo-brand.text-logo img { display: none !important; }
.fc-symbol {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.fc-symbol svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.fc-lens,
.fc-handle,
.fc-check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fc-lens {
  stroke: url(#unused);
  stroke: #13B8D6;
  stroke-width: 3.2;
}
.fc-handle {
  stroke: #071B34;
  stroke-width: 3.4;
}
.fc-check {
  stroke: #27DCA8;
  stroke-width: 4;
}
.fc-word {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -.065em;
  color: var(--night);
  line-height: 1;
}
.site-footer .footer-logo.text-logo .fc-word,
.text-orb .fc-word {
  color: #FFFFFF;
}
.site-footer .footer-logo.text-logo .fc-handle,
.text-orb .fc-handle {
  stroke: #FFFFFF;
}
.site-footer .footer-logo.text-logo .fc-lens,
.text-orb .fc-lens {
  stroke: #22D6EA;
}
.site-footer .footer-logo.text-logo .fc-check,
.text-orb .fc-check {
  stroke: #45F0B6;
}
.site-footer .footer-logo.text-logo {
  background: transparent !important;
  box-shadow: none !important;
}
.logo-orb.text-orb {
  width: min(25rem, 60%) !important;
  aspect-ratio: auto !important;
  min-height: 10rem;
  display: grid !important;
  grid-template-columns: auto 1fr;
  grid-template-areas: "mark word" "mark sub";
  align-items: center;
  justify-content: start;
  gap: .25rem 1rem;
  padding: 1.1rem 1.2rem;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.text-orb .fc-symbol-large {
  grid-area: mark;
  width: 5.4rem;
  height: 5.4rem;
  filter: drop-shadow(0 0 18px rgba(24,210,230,.25));
}
.text-orb .fc-word {
  grid-area: word;
  font-size: clamp(2rem, 4vw, 4rem);
  text-shadow: 0 0 24px rgba(24,210,230,.18);
}
.text-orb .fc-subline {
  grid-area: sub;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
@media (max-width: 680px) {
  .logo-orb.text-orb {
    width: 100% !important;
    grid-template-columns: auto 1fr;
    min-height: 7rem;
  }
  .text-orb .fc-symbol-large { width: 4rem; height: 4rem; }
  .text-orb .fc-word { font-size: 2.1rem; }
}

/* Polished generated logo asset placement */
.logo-brand.image-logo,
.site-header .logo-brand.image-logo {
  width: 13.8rem !important;
  min-width: 13.8rem !important;
  height: 4.25rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.logo-brand.image-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  filter: none !important;
}
.logo-orb.image-orb {
  width: min(24rem, 58%) !important;
  aspect-ratio: 810 / 272 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.logo-orb.image-orb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 18px rgba(24,210,230,.18)) !important;
}
.site-footer .footer-image-logo {
  width: 13.8rem !important;
  min-width: 13.8rem !important;
  height: 4.25rem !important;
  padding: .35rem .65rem !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  box-shadow: 0 16px 38px rgba(0,0,0,.16) !important;
  overflow: hidden !important;
}
.site-footer .footer-image-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important;
}
@media (max-width: 680px) {
  .logo-brand.image-logo,
  .site-header .logo-brand.image-logo,
  .site-footer .footer-image-logo {
    width: 10.8rem !important;
    min-width: 10.8rem !important;
    height: 3.4rem !important;
  }
  .logo-orb.image-orb { width: 100% !important; }
}

/* Footer text-only reset */
.text-only-footer {
  grid-template-columns: 1fr 1.35fr 1fr !important;
  align-items: start !important;
}
.footer-brand-text {
  display: grid;
  gap: .3rem;
}
.footer-brand-text strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -.055em;
  color: var(--night);
}
.footer-brand-text span {
  color: var(--muted);
  font-weight: 800;
}
.text-only-footer .footer-mission strong {
  color: var(--night);
}
@media (max-width: 940px) {
  .text-only-footer {
    grid-template-columns: 1fr !important;
  }
  .text-only-footer .footer-trust {
    text-align: left !important;
  }
}

/* Final AI result card: no large money/KPI visual */
.analysis-result {
  gap: .55rem !important;
  padding: 1.35rem 1.45rem !important;
}
.analysis-result strong {
  display: block !important;
  max-width: 58rem;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -.025em !important;
  color: #FFFFFF !important;
  text-shadow: none !important;
}
.analysis-result span {
  color: var(--mint) !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.analysis-result small {
  color: rgba(255,255,255,.72) !important;
  font-weight: 750 !important;
}

/* === FeeCheck Full Analysis Card === */
.fc-analysis {
  padding: 0;
}
.fc-analysis-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.fc-analysis-title {
  flex: 1;
}
.fc-analysis-title strong {
  display: block !important;
  font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
  line-height: 1.4 !important;
  color: #fff !important;
  margin-top: .4rem;
}
.fc-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mint, #18d2e6);
  background: rgba(24,210,230,.1);
  padding: .2rem .6rem;
  border-radius: 99px;
}
.fc-review-hint {
  display: block;
  color: #fbbf24 !important;
  font-size: .8rem !important;
  margin-top: .35rem;
}
.fc-score-ring {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--score-color, #34d399);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
}
.fc-score-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--score-color, #34d399);
  line-height: 1;
}
.fc-score-label {
  font-size: .6rem;
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.fc-section-label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin: 1rem 0 .5rem;
}
.fc-fees {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.fc-fee-row {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .6rem;
  padding: .7rem .9rem;
}
.fc-fee-row.fc-status-warning { border-left: 3px solid #ef4444; }
.fc-fee-row.fc-status-check { border-left: 3px solid #fbbf24; }
.fc-fee-row.fc-status-ok { border-left: 3px solid #34d399; }
.fc-fee-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.fc-fee-icon { font-size: .85rem; }
.fc-fee-label {
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}
.fc-amount {
  margin-left: auto;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}
.fc-fee-explain {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  margin-top: .3rem;
  line-height: 1.4;
}
.fc-fee-market {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .8rem;
  margin-top: .3rem;
}
.fc-market {
  font-size: .75rem;
  color: var(--mint, #18d2e6);
  font-weight: 600;
}
.fc-hint {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.fc-fee-status {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}
.fc-status-ok .fc-fee-status { color: #34d399; }
.fc-status-check .fc-fee-status { color: #fbbf24; }
.fc-status-warning .fc-fee-status { color: #ef4444; }

.fc-estimate {
  background: rgba(24,210,230,.06);
  border: 1px solid rgba(24,210,230,.15);
  border-radius: .6rem;
  padding: .8rem .9rem;
  margin-top: 1rem;
}
.fc-estimate-title {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mint, #18d2e6);
  margin-bottom: .5rem;
}
.fc-estimate-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .2rem 0;
  color: rgba(255,255,255,.75);
}
.fc-estimate-row strong { color: #fff; }
.fc-estimate-total {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: .3rem;
  padding-top: .4rem;
  font-weight: 700;
}
.fc-estimate-total span, .fc-estimate-total strong { color: #fff; font-size: .9rem; }
.fc-estimate-note {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: .4rem;
  line-height: 1.4;
}

.fc-score-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .4rem;
}
.fc-score-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .5rem;
  padding: .5rem .7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-score-item span { font-size: .78rem; color: rgba(255,255,255,.6); }
.fc-score-item strong { font-family: 'Sora', sans-serif; font-size: .95rem; color: #fff; }

.fc-footer-note {
  margin-top: 1rem;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}
.fc-empty {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  padding: .5rem 0;
}

@media (max-width: 640px) {
  .fc-analysis-header { flex-direction: column; align-items: stretch; }
  .fc-score-ring { align-self: center; }
  .fc-score-details { grid-template-columns: repeat(2, 1fr); }
  .fc-fee-header { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .fc-amount { margin-left: 0; font-size: .85rem; }
  .fc-fee-row { padding: .6rem .7rem; }
  .fc-fee-label { font-size: .82rem; }
  .fc-fee-explain { font-size: .76rem; }
  .fc-fee-market { flex-direction: column; gap: .15rem; }
  .fc-market, .fc-hint { font-size: .7rem; }

  /* Sub-items: stack vertically on mobile */
  .fc-sub-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
    padding: .3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .fc-sub-item:last-child { border-bottom: none; }
  .fc-sub-desc { font-size: .76rem; min-width: unset; }
  .fc-sub-details {
    flex-wrap: wrap;
    gap: .25rem;
    font-size: .7rem;
  }
  .fc-sub-total {
    margin-left: 0;
    font-size: .76rem;
  }

  /* Estimate */
  .fc-estimate-row { font-size: .78rem; }
  .fc-estimate-row strong { font-size: .78rem; }
  .fc-estimate-total span, .fc-estimate-total strong { font-size: .82rem; }

  /* Score items */
  .fc-score-item { padding: .4rem .5rem; }
  .fc-score-item span { font-size: .7rem; }
  .fc-score-item strong { font-size: .82rem; }
}

/* === Sub-items within fee groups === */
.fc-sub-items {
  margin: .5rem 0 .3rem;
  padding: .3rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.fc-sub-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .2rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.fc-sub-desc {
  flex: 1;
  min-width: 120px;
  color: rgba(255,255,255,.75);
}
.fc-sub-details {
  display: flex;
  gap: .35rem;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}
.fc-sub-rate, .fc-sub-count, .fc-sub-basis {
  white-space: nowrap;
}
.fc-sub-total {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-left: auto;
  white-space: nowrap;
}

/* === Clean Upload Form === */
.upload-form-clean {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.upload-field-hero {
  text-align: center;
  padding: 2rem 1.5rem !important;
  border: 2px dashed rgba(24,210,230,.3) !important;
  border-radius: 1rem !important;
  background: rgba(24,210,230,.04) !important;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload-field-hero:hover {
  border-color: rgba(24,210,230,.6) !important;
  background: rgba(24,210,230,.08) !important;
}
.upload-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: .5rem;
}
.upload-field-hero strong {
  display: block !important;
  font-size: 1rem !important;
  color: #fff !important;
  margin-bottom: .3rem;
}
.upload-field-hero small {
  color: rgba(255,255,255,.5) !important;
  font-size: .8rem !important;
}
.upload-submit {
  font-size: 1rem;
  padding: .9rem 2rem;
  width: 100%;
}

.fc-calculation {
  margin: .45rem 0 .25rem;
  padding: .45rem .6rem;
  border-radius: .45rem;
  background: rgba(24,210,230,.08);
  border: 1px solid rgba(24,210,230,.16);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  line-height: 1.35;
}
.fc-calculation strong { color: var(--mint, #37E6B0); }
@media (max-width: 640px) {
  .fc-calculation { font-size: .74rem; }
}
