/* ============================================================
   Your Architect — house style (blue brand, 2026)

   Bright blue + deep navy, with an orange accent and a big navy
   arc sweeping out of the top-left of the hero. Plus Jakarta Sans,
   stacked wordmark, full-width colour zones. Confident and friendly
   rather than corporate: rounded shapes, generous type, flat fills.
   ============================================================ */

:root {
  /* Palette — exact values from the Aug 2026 Design Brief.
     Cool blue trio for structure + calm; warm orange/blush for action. */
  --blue:      #3478DE;   /* primary bright blue — large fields, links, zones */
  --blue-d:    #2A63C4;   /* darker blue (hover) */
  --navy:      #253E94;   /* deep navy — the arc, headings, dark zones */
  --navy-d:    #1C2F73;
  --sky:       #C7DEED;   /* pale blue — light zones, panel fills */
  --sky-pale:  #E4EFF7;   /* lighter tint for full-width washes */
  --orange:    #DB6A2E;   /* accent ONLY — CTAs, the total, key figures, mark */
  --orange-d:  #C05B22;
  --blush:     #F9DBCB;   /* soft warm tone — save/resume bar, warm zones */
  --peach:     #F9DBCB;   /* alias */
  --sage:      #4A7C6F;   /* success / confirmation only */
  --sage-pale: #EAF2EF;
  --bg:        #FAFAF8;   /* off-white neutral ground */
  --ink:       #1C1C1A;   /* near-black text */
  --ink-soft:  #4C4A45;
  --muted:     #8B8A85;
  --line:      #E7E4DE;   /* hairlines */
  --line-2:    #D8D4CC;
  --paper:     #FFFFFF;
  --maxw: 1200px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { line-height: 1.04; letter-spacing: -0.03em; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--blue); color: #fff; }

/* ---- Layout: full-width colour zones ---- */
.zone { width: 100%; }
.zone--pale { background: var(--sky-pale); }
.zone--blue { background: var(--blue); color: #fff; }
.zone--navy, .zone--ink { background: var(--navy); color: #fff; }
.zone--sage { background: var(--sage-pale); }
.zone + .zone { border-top: 1px solid var(--line); }
.zone--blue + .zone, .zone--navy + .zone, .zone--ink + .zone,
.zone + .zone--blue, .zone + .zone--navy, .zone + .zone--ink { border-top: 0; }
.band { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; }
.band--narrow { max-width: 820px; }
.pad { padding: 92px 0; }
.pad-sm { padding: 60px 0; }

/* ---- Brand marks ---- */
/* The "1" app icon (navy rounded square) — used as a small mark where needed. */
.ymark {
  width: 40px; height: 40px; background: var(--navy); border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.ymark::after {
  content: "1"; color: #fff; font-family: var(--font); font-weight: 800;
  font-size: 27px; line-height: 1; letter-spacing: -0.04em;
}

/* Stacked "Your / Architect" wordmark */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.wordmark {
  display: inline-flex; flex-direction: column; line-height: 0.9;
  font-weight: 800; font-size: 1.5rem; letter-spacing: -0.035em; color: var(--navy);
}
.wordmark > span { display: block; }
.zone--blue .wordmark, .zone--navy .wordmark, .zone--ink .wordmark,
.site-head .wordmark, .site-foot .wordmark { color: #fff; }

/* ---- Header ---- */
.site-head {
  position: sticky; top: 0; z-index: 100; background: var(--blue);
}
.site-head .band { display: flex; align-items: center; gap: 24px; min-height: 84px; padding-top: 14px; padding-bottom: 14px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav a.navlink {
  padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  color: rgba(255,255,255,.92); transition: background .14s ease, color .14s ease;
}
.nav a.navlink:hover { background: rgba(255,255,255,.16); color: #fff; }
.nav-toggle { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: background .14s ease, color .14s ease, border-color .14s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-d); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.zone--blue .btn-outline, .site-head .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); }
.zone--blue .btn-outline:hover, .site-head .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--ink-soft); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-block { display: flex; width: 100%; }

/* ---- Hero ---- */
.hero-zone { background: var(--blue); position: relative; overflow: hidden; }
.hero-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-deco .arc {
  position: absolute; top: -60%; left: -22%;
  width: min(1180px, 100%); aspect-ratio: 1 / 1; background: var(--navy); border-radius: 50%;
}
.hero-deco .strip {
  position: absolute; top: 150px; right: 0; left: 42%; height: clamp(90px, 12vw, 168px);
  background: var(--navy);
}
.hero { position: relative; z-index: 1; padding: 30px 0 56px; }
.hero-inner { display: flex; flex-direction: column; align-items: flex-end; text-align: right; padding-top: 40px; }
.hero .tagline {
  font-size: clamp(2.6rem, 7.2vw, 6rem); font-weight: 800; letter-spacing: -0.045em;
  line-height: 0.96; color: #fff; margin: 0;
}
.hero-lede { font-size: clamp(1.15rem, 2.4vw, 1.7rem); font-weight: 500; color: rgba(255,255,255,.94); margin-top: 22px; line-height: 1.28; }
.creds { display: flex; align-items: center; gap: 26px; margin-top: 30px; }
.cred { display: inline-flex; align-items: center; gap: 9px; color: #fff; opacity: .92; }
.cred .mark { font-weight: 800; letter-spacing: .02em; font-size: 1.5rem; line-height: 1; }
.cred .desc { font-size: .62rem; line-height: 1.15; text-transform: uppercase; letter-spacing: .06em; opacity: .85; text-align: left; }

/* Archie embed sits in the hero, overlapping into the blue */
.hero-embed-wrap { position: relative; z-index: 1; margin-top: 44px; }

/* ---- Section headings ---- */
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-kicker { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.zone--blue .sec-kicker, .zone--navy .sec-kicker, .zone--ink .sec-kicker { color: rgba(255,255,255,.78); }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 12px 0 14px; letter-spacing: -0.04em; color: var(--navy); }
.zone--blue .sec-head h2, .zone--navy .sec-head h2, .zone--ink .sec-head h2 { color: #fff; }
.sec-head p { font-size: 1.15rem; color: var(--ink-soft); }
.zone--blue .sec-head p, .zone--navy .sec-head p, .zone--ink .sec-head p { color: rgba(255,255,255,.86); }

/* ---- Stats zone ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat { padding: 8px 34px; border-left: 1px solid rgba(255,255,255,.24); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .figure { font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.stat .figure .accent { color: var(--orange); }
.stat .label { font-size: 1.02rem; font-weight: 600; margin-top: 12px; opacity: .95; }
.stat .sub { font-size: .9rem; opacity: .72; margin-top: 4px; }

/* ---- Comparison table ---- */
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare thead th { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.compare thead th.us { color: var(--blue); font-size: 1.05rem; text-transform: none; letter-spacing: -0.02em; }
.compare thead th.col { text-align: center; width: 20%; }
.compare tbody th { font-weight: 600; font-size: 1rem; width: 34%; color: var(--ink); }
.compare td.cell { text-align: center; font-weight: 600; }
.compare td.us { background: var(--sky-pale); color: var(--ink); }
.compare thead th.us { background: var(--sky-pale); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }
.compare .yes { color: var(--sage); font-weight: 800; }
.compare .no { color: var(--orange-d); }
.compare .muted { color: var(--muted); font-weight: 500; font-size: .92rem; }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.compare-wrap table { min-width: 720px; }

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: 20px; padding: 26px; }
.price-card.feat { border-color: var(--blue); border-width: 2px; position: relative; box-shadow: 0 18px 40px -24px rgba(38,55,147,.5); }
.price-card.feat::before {
  content: "Most common"; position: absolute; top: -12px; left: 26px;
  background: var(--blue); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.price-card .band-note { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-top: 1px solid var(--line); font-size: .98rem; }
.price-row .svc { color: var(--ink-soft); }
.price-row .amt { font-weight: 800; font-variant-numeric: tabular-nums; color: var(--navy); }
.price-note { margin-top: 22px; font-size: .92rem; color: var(--ink-soft); }

/* ---- Pricing menu (two packages + add-ons) ---- */
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.pkg-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: 20px; padding: 28px; }
.pkg-card.feat { border-color: var(--blue); border-width: 2px; box-shadow: 0 18px 44px -26px rgba(38,55,147,.5); }
.pkg-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.pkg-top h3 { font-size: 1.3rem; letter-spacing: -0.02em; color: var(--navy); }
.pkg-price { font-size: 2.2rem; font-weight: 800; color: var(--orange); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pkg-blurb { color: var(--ink-soft); font-size: .96rem; margin: 10px 0 18px; }
.pkg-inc-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pkg-list { list-style: none; display: grid; gap: 9px; }
.pkg-list li { position: relative; padding-left: 26px; font-size: .96rem; color: var(--ink); }
.pkg-list li::before { content: ""; position: absolute; left: 0; top: .16em; width: 16px; height: 16px; border-radius: 50%; background: var(--sky-pale); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23253E94' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.addons { margin-top: 22px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 20px; padding: 24px 28px; }
.addons-head { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.addon-list { list-style: none; }
.addon-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .98rem; color: var(--ink); }
.addon-list li:first-child { border-top: 0; }
.addon-list strong { color: var(--navy); font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-note { margin-top: 16px; font-size: .9rem; color: var(--ink-soft); }
.menu-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Services grid ---- */
.services-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.services-grid li { background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; padding: 16px 18px; font-weight: 600; color: var(--navy); font-size: .98rem; }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step { padding: 0 28px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; padding-left: 0; }
.step .n { font-size: 1rem; font-weight: 800; color: var(--blue); }
.step h3 { font-size: 1.24rem; margin: 14px 0 8px; letter-spacing: -0.02em; color: var(--navy); }
.step p { font-size: .98rem; color: var(--ink-soft); }

/* ---- FAQ ---- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details { border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper); padding: 4px 22px; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { padding: 0 0 18px; color: var(--ink-soft); }

/* ---- Footer ---- */
.site-foot { background: var(--navy); color: #fff; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.foot-brand .tagline-sm { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.035em; margin-top: 20px; }
.foot-brand p { color: rgba(255,255,255,.62); margin-top: 12px; max-width: 40ch; font-size: .95rem; }
.foot-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.foot-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.84); font-size: .96rem; }
.foot-col a:hover { color: #fff; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.16); padding: 22px 0 40px; display: flex; flex-direction: column; gap: 6px; font-size: .85rem; color: rgba(255,255,255,.52); }
.foot-legal strong { color: rgba(255,255,255,.82); font-weight: 600; }

/* ---- Generic page content ---- */
.entry-content { font-size: 1.06rem; color: var(--ink-soft); }
.entry-content h2, .entry-content h3 { color: var(--navy); margin: 1.4em 0 .5em; }
.entry-content p { margin-bottom: 1em; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .stats, .steps, .steps--3 { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stat, .step { border-left: 0; padding-left: 0; padding-right: 20px; }
  .price-grid, .pkg-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .pad { padding: 68px 0; }
  .hero-deco .strip { display: none; }
  .hero-inner { align-items: flex-start; text-align: left; }
}
@media (max-width: 700px) {
  .nav { display: none; }
}
@media (max-width: 560px) {
  .band { padding: 0 20px; }
  .stats, .steps, .steps--3, .foot-top, .services-grid { grid-template-columns: 1fr; }
  .price-card.feat::before { left: 20px; }
  .hero-deco .arc { top: -30%; left: -40%; width: 150%; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
