/* ============================================================
   Eddys Development — Landing page styles
   Builds on styles.css (palette vars, bg layers, cursor glow, fonts).
   ============================================================ */

/* The landing scrolls — undo the auth screen's centered layout. */
body.landing { overflow-x: hidden; }
.landing .container { width: min(1120px, 100%); margin: 0 auto; padding: 0 24px; }

/* Landing cards: clean static glass (drop the auth card's moving spotlight). */
/* width:auto/min-width:0 undoes styles.css's fixed 440px auth-card width so
   grids can size these cards. */
.landing .card { position: relative; isolation: isolate; width: auto; min-width: 0; }
.landing .card::before,
.landing .card::after { content: none; }
.landing .card {
  background: rgba(33, 26, 20, .62);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  backdrop-filter: blur(10px) saturate(135%);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 14px 34px rgba(0, 0, 0, .34);
}

/* ---------- Buttons (inline, for the landing) ----------- */
.landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font: 600 15px var(--font-ui);
  line-height: 1;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(135deg, #F5A524 0%, #EC7A2E 55%, #E2552B 120%);
  box-shadow: 0 8px 22px rgba(226, 85, 43, .38);
  transition: transform .12s var(--ease-soft), box-shadow .2s, filter .2s;
}
.landing .btn:hover { filter: brightness(1.05); box-shadow: 0 12px 28px rgba(226, 85, 43, .5); }
.landing .btn:active { filter: brightness(.97); }
.landing .btn:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 3px; }
.landing .btn-lg { height: 54px; padding: 0 28px; font-size: 16px; border-radius: 14px; }
.landing .btn-ghost {
  background: rgba(245, 165, 36, .10);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.landing .btn-ghost:hover { background: rgba(245, 165, 36, .18); border-color: var(--border-hover); box-shadow: none; filter: none; }

/* Loading spinner for the form submit */
.landing .btn .btn-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.landing .btn.is-loading .btn-label { opacity: .35; }
.landing .btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Nav ----------------------------------------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background .25s, border-color .25s, box-shadow .25s, backdrop-filter .25s; border-bottom: 1px solid transparent; }
.nav.scrolled {
  background: rgba(22, 16, 11, .72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}
.nav-inner { width: min(1120px, 100%); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo { height: 40px; width: auto; display: block; }
@media (max-width: 920px) { .nav-logo { height: 34px; } }
.nav-brand .mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--violet-700));
  box-shadow: 0 4px 14px rgba(226, 85, 43, .42);
}
.nav-word { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a { font: 500 14.5px var(--font-ui); color: var(--muted); text-decoration: none; white-space: nowrap; transition: color .15s; }
.nav-links > a:hover { color: var(--text); }

/* CTA / auth buttons — consistent in the nav links AND the auth cluster */
.nav-cta, .nav-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-radius: 11px;
  font: 600 14px var(--font-ui);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s, border-color .18s, filter .18s, color .18s;
}
.nav-cta svg, .nav-cta-ghost svg { width: 16px; height: 16px; flex: none; }
.nav-cta-ghost { color: var(--text); background: transparent; border: 1px solid var(--border-strong); }
.nav-cta-ghost:hover { border-color: var(--border-hover); background: rgba(245, 165, 36, .08); }
.nav-cta { color: #1B1308; border: 0; background: linear-gradient(135deg, var(--amber), var(--ember)); box-shadow: 0 6px 18px rgba(226, 85, 43, .3); }
.nav-cta:hover { filter: brightness(1.05); }

/* Logged-in account chip */
.nav-auth { display: inline-flex; align-items: center; gap: 10px; }
.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0 15px 0 5px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(245, 165, 36, .06);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, background .15s;
}
.account-chip:hover { border-color: var(--border-hover); background: rgba(245, 165, 36, .12); }
.account-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--ember));
  color: #1B1308;
  font: 700 13px var(--font-ui);
  text-transform: uppercase;
}
.account-name { font: 600 14px var(--font-ui); color: var(--text); }
[data-auth][hidden] { display: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: rgba(245, 165, 36,.08); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Layout primitives --------------------------- */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; z-index: 1; }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.kicker { font: 600 12px var(--font-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--violet); margin: 0 0 12px; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 4vw, 38px); line-height: 1.15; color: var(--text); margin: 0 0 14px; letter-spacing: -.01em; }
.section-lead { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; color: var(--muted); margin: 0; }
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Hero ---------------------------------------- */
.hero { position: relative; z-index: 1; padding: clamp(70px, 12vw, 150px) 0 clamp(48px, 7vw, 90px); }
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font: 600 13px var(--font-ui); color: var(--violet-bright); background: rgba(245, 165, 36,.10); border: 1px solid var(--border-strong); padding: 7px 14px; border-radius: 999px; margin: 0 0 22px; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5);} 70% { box-shadow: 0 0 0 7px rgba(52,211,153,0);} 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0);} }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 7.5vw, 76px); line-height: 1.04; letter-spacing: -.02em; color: var(--text); margin: 0 0 22px; }
.hero-title .grad { background: linear-gradient(120deg, #FBD68A 0%, #EC7A2E 45%, #E2552B 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--muted); max-width: 620px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; padding: 0; margin: 40px 0 0; font: 500 13.5px var(--font-mono); color: var(--faint); }
.hero-trust li { white-space: nowrap; }

/* ---------- Services ------------------------------------ */
.svc { padding: 26px 22px; }
.svc-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--violet-bright); background: rgba(245, 165, 36,.14); border: 1px solid var(--border-strong); margin-bottom: 16px; }
.svc-icon svg { width: 24px; height: 24px; }
.svc h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--text); margin: 0 0 8px; }
.svc p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Work ---------------------------------------- */
.work-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8px; align-items: center; padding: 34px; margin-bottom: 18px; overflow: hidden; }
.work-feature-body { padding: 6px; }
.work-tag { display: inline-block; font: 600 12px var(--font-ui); letter-spacing: .04em; color: #34d399; background: rgba(52,211,153,.10); border: 1px solid rgba(52,211,153,.28); padding: 5px 11px; border-radius: 999px; margin: 0 0 14px; }
.work-feature-body h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3vw, 34px); color: var(--text); margin: 0 0 12px; }
.work-feature-body > p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 18px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.chips li { font: 500 12.5px var(--font-mono); color: var(--violet-bright); background: rgba(245, 165, 36,.10); border: 1px solid var(--border); padding: 5px 11px; border-radius: 8px; }
.work-feature-visual { display: grid; place-items: center; min-height: 240px; }
.phone { width: 168px; height: 330px; border-radius: 30px; padding: 10px; background: linear-gradient(160deg, #2a2150, #14102a); border: 1px solid var(--border-strong); box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.12); }
.phone-screen { width: 100%; height: 100%; border-radius: 22px; background: #ffffff; display: grid; place-items: center; padding: 20px; overflow: hidden; }
.phone-logo-img { width: 100%; max-width: 128px; height: auto; display: block; }

.work-mini { padding: 24px 22px; }
.work-mini h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text); margin: 0 0 8px; }
.work-mini p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.work-cta { background: linear-gradient(160deg, rgba(226, 85, 43,.20), rgba(21,17,43,.62)); border-color: var(--border-strong); }
.link-arrow { display: inline-block; margin-top: 12px; font: 600 14px var(--font-ui); color: var(--violet-bright); text-decoration: none; }
.link-arrow:hover { color: #fff; }

/* ---------- Process ------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { padding: 24px 22px; }
.step-num { font: 700 13px var(--font-mono); color: var(--violet); letter-spacing: .1em; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text); margin: 10px 0 8px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Pricing ------------------------------------- */
.pricing-grid { gap: 16px; }
.price-card { display: flex; flex-direction: column; padding: 26px 22px; }
.price-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--text); margin: 0 0 12px; min-height: 2.5em; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--text); line-height: 1; margin: 0 0 12px; display: flex; align-items: baseline; gap: 7px; }
.price .from { font-family: var(--font-ui); font-weight: 500; font-size: 13px; color: var(--faint); }
.price-eta { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font: 600 12.5px var(--font-ui); color: var(--violet-bright); background: rgba(245, 165, 36, .10); border: 1px solid var(--border-strong); padding: 5px 11px; border-radius: 999px; margin: 0 0 18px; }
.price-eta svg { width: 13px; height: 13px; }
.price-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; flex: 1; }
.price-list li { position: relative; padding-left: 22px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.price-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #34d399; font-weight: 700; }
.price-cta { font: 600 14px var(--font-ui); color: var(--violet-bright); text-decoration: none; margin-top: auto; }
.price-cta:hover { color: #ffffff; }
.price-desc { font: 400 13px/1.55 var(--font-ui); color: var(--muted); margin: -2px 0 16px; min-height: 3em; }
.price-foot { font: 400 12px/1.5 var(--font-ui); color: var(--faint); border-top: 1px solid var(--border); padding-top: 12px; margin: 14px 0 16px; }
.price-carry { font: 700 10px var(--font-ui); letter-spacing: .08em; text-transform: uppercase; color: var(--violet-bright); margin: 2px 0 12px; }
.pricing-note { max-width: 740px; margin: 34px auto 0; text-align: center; }
.pricing-incl {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.pricing-incl li { display: inline-flex; align-items: center; gap: 9px; font: 500 14px var(--font-ui); color: var(--text); }
.pricing-incl li svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
.pricing-more { max-width: 540px; margin: 0 auto; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.pricing-more strong { color: var(--gold); font-weight: 600; }
.pricing-note a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 165, 36, .35);
  transition: border-color .2s, color .2s;
}
.pricing-note a:hover { border-bottom-color: var(--amber); color: var(--amber-bright); }

/* "Want something in between?" — custom-quote strip below the tier grid */
.pricing-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 22px 0 0;
  padding: 26px 30px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  background:
    radial-gradient(130% 180% at 0% 0%, rgba(245, 165, 36, .16), transparent 58%),
    var(--glass-fill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pricing-custom-copy { max-width: 60ch; }
.pricing-custom-copy h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--text); margin: 0 0 6px; }
.pricing-custom-copy p { font: 400 14px/1.55 var(--font-ui); color: var(--muted); margin: 0; }
.pricing-custom-cta { width: auto; flex: none; white-space: nowrap; padding: 14px 24px; }
@media (max-width: 720px) {
  .pricing-custom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .pricing-custom-cta { width: 100%; text-align: center; }
}

/* ---------- Why us -------------------------------------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.why-text { text-align: left; }
.why-text .section-lead { margin-bottom: 24px; }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; background: rgba(21,17,43,.5); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.why-check { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(52,211,153,.14); color: #34d399; font-weight: 700; font-size: 14px; }
.why-list strong { display: block; color: var(--text); font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.why-list span { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ---------- Start a project (form) ---------------------- */
.section-start { padding-bottom: clamp(70px, 9vw, 130px); }
.start-card { max-width: 720px; margin: 0 auto; padding: clamp(26px, 4vw, 42px); }
.start-head { margin-bottom: 26px; }
.start-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.start-form .field { margin-bottom: 16px; }
.start-form label { display: block; font: 600 13.5px var(--font-ui); color: var(--text); margin-bottom: 7px; }
.start-form label .opt { color: var(--faint); font-weight: 400; }
.start-form .ctrl { position: relative; display: block; }
.start-form input, .start-form select, .start-form textarea {
  width: 100%; box-sizing: border-box;
  background: rgba(30, 20, 12, .6); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font: 400 15px var(--font-ui); padding: 13px 14px; outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.start-form textarea { resize: vertical; min-height: 116px; line-height: 1.5; }
.start-form select { appearance: none; -webkit-appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b9a9d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.start-form input::placeholder, .start-form textarea::placeholder { color: var(--faint); }
.start-form input:focus, .start-form select:focus, .start-form textarea:focus { border-color: var(--border-hover); box-shadow: 0 0 0 3px var(--ring); background: rgba(42, 28, 16, .85); }
.start-form input[aria-invalid="true"] { border-color: var(--danger); }
.start-form .btn { width: 100%; margin-top: 6px; }
.start-form .msg { margin: 6px 0 0; font-size: 13px; min-height: 1em; }
.start-form .msg-error { color: var(--danger); }
.form-status { margin: 14px 0 0; font-size: 14px; }
.start-fineprint { margin: 16px 0 0; font-size: 13.5px; color: var(--faint); text-align: center; }
.start-fineprint .link { color: var(--violet-bright); }

/* ---------- Footer -------------------------------------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); margin-top: 20px; padding: clamp(40px, 6vw, 64px) 0 30px; background: rgba(8, 6, 18, .5); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-tag { color: var(--muted); font-size: 14px; margin: 14px 0 0; max-width: 240px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-h { font: 600 12px var(--font-ui); letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin: 0 0 4px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.footer-bottom .mono { font-family: var(--font-mono); font-size: 12px; color: var(--faint); }
.footer-bottom > span:last-child { font-size: 12.5px; color: var(--faint); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--faint); text-decoration: none; font-size: 12.5px; transition: color .15s; }
.footer-legal a:hover { color: var(--text); }

/* ---------- Reveal on scroll ---------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------------------------------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .work-feature { display: flex; flex-direction: column; align-items: stretch; }
  .work-feature-visual { order: -1; min-height: 0; margin-bottom: 18px; }
  .phone { width: 150px; height: 300px; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    padding: 14px 24px 20px;
    background: rgba(22, 16, 11, .96);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s var(--ease-soft), opacity .22s;
  }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links > a { padding: 11px 4px; }
  .nav-links .nav-cta, .nav-links .nav-cta-ghost { text-align: center; padding: 12px; }
  .nav-auth { display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
  .account-chip { justify-content: center; padding: 10px; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .start-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dot-live { animation: none; }
}

/* ============================================================
   PREMIUM VISUAL PASS — depth, light & orchestrated motion.
   Pure CSS layered on the existing markup (no HTML/JS changes).
   Selectors are .landing-scoped so they win over the base card
   rules; reduced-motion handled at the bottom + global guard.
   ============================================================ */

/* ---- Hero: ambient aura + luminous, flowing headline ------ */
.landing .hero { isolation: isolate; }
.landing .hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 50%;
  width: min(880px, 92vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(245, 165, 36, .18), transparent 72%),
    conic-gradient(from 0deg,
      rgba(245, 165, 36, .14), rgba(226, 85, 43, .12),
      rgba(199, 123, 71, .14), rgba(245, 165, 36, .14));
  border-radius: 50%;
  filter: blur(54px);
  opacity: .7;
  pointer-events: none;
  animation: heroAura 44s linear infinite, auraBreathe 10s ease-in-out infinite;
}
@keyframes heroAura { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes auraBreathe { 0%, 100% { opacity: .22; } 50% { opacity: .5; } }

.landing .hero-title { text-shadow: 0 2px 48px rgba(226, 85, 43, .28); }
.landing .hero-title .grad {
  background-size: 220% 220%;
  animation: gradFlow 9s ease-in-out infinite;
}
@keyframes gradFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Orchestrated entrance — cascade the existing reveal items */
.landing .hero-inner > [data-reveal] { transition-duration: .85s; }
.landing .hero-inner > [data-reveal]:nth-child(2) { transition-delay: .10s; }
.landing .hero-inner > [data-reveal]:nth-child(3) { transition-delay: .20s; }
.landing .hero-inner > [data-reveal]:nth-child(4) { transition-delay: .32s; }
.landing .hero-inner > [data-reveal]:nth-child(5) { transition-delay: .44s; }

.landing .eyebrow { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
.landing .hero-trust li { transition: color .22s var(--ease-soft); }
.landing .hero-trust li:hover { color: var(--violet-bright); }

/* ---- Premium scroll reveal: soft focus-in (blur) ---------- */
.landing [data-reveal] {
  filter: blur(7px);
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft), filter .7s var(--ease-soft);
}
.landing [data-reveal].is-visible { filter: blur(0); }

/* ---- Content cards: depth, hover lift & top sheen --------- */
.landing .svc,
.landing .work-mini,
.landing .price-card,
.landing .work-feature {
  transition: transform .34s var(--ease-soft), box-shadow .34s var(--ease-soft), border-color .34s var(--ease-soft);
  will-change: transform;
}
.landing .svc,
.landing .work-mini,
.landing .price-card { overflow: hidden; }

.landing .svc::before,
.landing .work-mini::before,
.landing .price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(460px 180px at 50% -16%, rgba(232, 201, 138, .18), transparent 70%);
  opacity: 0;
  transition: opacity .34s var(--ease-soft);
}
.landing .svc > *,
.landing .work-mini > *,
.landing .price-card > * { position: relative; z-index: 1; }

.landing .svc:hover,
.landing .work-mini:hover,
.landing .price-card:hover,
.landing .work-feature:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    0 26px 54px rgba(0, 0, 0, .44),
    0 0 42px rgba(226, 85, 43, .24);
}
.landing .svc:hover::before,
.landing .work-mini:hover::before,
.landing .price-card:hover::before { opacity: 1; }

/* Service icon springs on card hover */
.landing .svc-icon { transition: transform .34s var(--ease-spring), background .3s, color .3s, box-shadow .3s; }
.landing .svc:hover .svc-icon {
  transform: translateY(-2px) scale(1.08);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-600), var(--magenta));
  box-shadow: 0 12px 26px rgba(245, 165, 36, .5);
}

/* ---- Phone mockup: gentle float -------------------------- */
.landing .phone { animation: floatY 6.5s ease-in-out infinite; will-change: transform; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.landing .work-feature:hover .work-tag { box-shadow: 0 0 0 1px rgba(52, 211, 153, .45), 0 0 20px rgba(52, 211, 153, .28); }

/* ---- Nav: animated underline + brand tilt ---------------- */
.landing .nav-links > a { position: relative; }
.landing .nav-links > a:not(.nav-cta):not(.nav-cta-ghost)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease-soft);
}
.landing .nav-links > a:not(.nav-cta):not(.nav-cta-ghost):hover::after { transform: scaleX(1); }
.landing .nav-brand .mark { transition: transform .35s var(--ease-spring), box-shadow .3s; }
.landing .nav-brand:hover .mark { transform: rotate(-7deg) scale(1.08); box-shadow: 0 8px 22px rgba(226, 85, 43, .6); }

/* ---- Why-list: slide + sheen on hover -------------------- */
.landing .why-list li { transition: transform .3s var(--ease-soft), border-color .3s, background .3s, box-shadow .3s; }
.landing .why-list li:hover {
  transform: translateX(5px);
  border-color: var(--border-hover);
  background: rgba(226, 85, 43, .12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .32);
}
.landing .why-check { transition: transform .3s var(--ease-spring); }
.landing .why-list li:hover .why-check { transform: scale(1.14) rotate(-3deg); }

/* ---- Small luminous touches ------------------------------ */
.landing .section-head h2 { text-shadow: 0 2px 34px rgba(226, 85, 43, .20); }
.landing .dot-live { box-shadow: 0 0 10px rgba(52, 211, 153, .75); }
.landing .link-arrow { display: inline-block; transition: color .2s, transform .2s var(--ease-soft); }
.landing .work-cta:hover .link-arrow { transform: translateX(4px); color: #fff; }

/* ---- Reduced motion: silence ambient/looping animation ---- */
@media (prefers-reduced-motion: reduce) {
  .landing .hero::before { animation: none; }
  .landing .hero-title .grad { animation: none; }
  .landing .phone { animation: none; }
  .landing [data-reveal] { filter: none; }
  .landing .hero-inner > [data-reveal] { transition-delay: 0s; }
}

/* ============================================================
   ACCESSIBILITY PASS (skill-driven) — consistent, visible
   keyboard focus on every interactive element.
   ui-ux-pro-max UX rule "Focus States" (High) + frontend-design
   quality floor (visible keyboard focus).
   ============================================================ */
.landing .nav-links > a:focus-visible,
.landing .nav-cta:focus-visible,
.landing .nav-cta-ghost:focus-visible,
.landing .account-chip:focus-visible,
.landing .footer-col a:focus-visible,
.landing .footer-legal a:focus-visible,
.landing .link-arrow:focus-visible,
.landing .price-cta:focus-visible {
  outline: 2px solid var(--violet-bright);
  outline-offset: 4px;
  border-radius: 6px;
}
/* Keyboard users get the same animated underline as hover */
.landing .nav-links > a:not(.nav-cta):not(.nav-cta-ghost):focus-visible::after {
  transform: scaleX(1);
}

/* ============================================================
   "SHIP IT" GREEN — green flags every live / shipped / launch
   moment (the studio's signature signal, grounded in "built to
   ship"). Reuses the existing --success colour + pulse keyframe.
   ============================================================ */

/* Hero trust row: the live-product proof reads green */
.landing .hero-trust li:first-child { color: var(--success); }

/* "Live on the App Store" badge gets a pulsing live dot */
.landing .work-tag { display: inline-flex; align-items: center; gap: 8px; }
.landing .work-tag::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .6);
  animation: pulse 2s infinite;
}

/* Process: step 04 "Launch" is the ship moment — light it green */
.landing .steps .step:last-child .step-num {
  color: var(--success);
  text-shadow: 0 0 12px rgba(52, 211, 153, .45);
}

/* Live dot holds steady when motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .landing .work-tag::before { animation: none; }
}

/* ============================================================
   SERVICE AVAILABILITY — admin-controlled (via /admin.html).
   "off"    -> the card is hidden entirely.
   "booked" -> the card dims + shows a "Booked · waitlist" badge.
   ============================================================ */
.landing .is-off { display: none !important; }

.landing .is-booked { border-color: rgba(214, 188, 142, .24) !important; }
.landing .is-booked > *:not(.svc-badge) { opacity: .66; }
/* Reserve room top-right so the title wraps clear of the floating badge. */
.landing .is-booked h3 { padding-right: 84px; }

.landing .svc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 600 10px var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #EEE3CE;
  background: linear-gradient(180deg, rgba(44, 37, 29, .74), rgba(23, 20, 26, .76));
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border: 1px solid rgba(220, 186, 132, .32);
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .07);
}
.landing .svc-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8B774;
  box-shadow: 0 0 8px rgba(232, 183, 116, .85);
  animation: badgePulse 2.6s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 6px rgba(232, 183, 116, .65); }
  50%      { transform: scale(1.18); box-shadow: 0 0 11px rgba(232, 183, 116, 1); }
}
@media (prefers-reduced-motion: reduce) {
  .landing .svc-badge::before { animation: none; transform: none; }
}
