/* CloudWish theme. Tokens first; sections below are scoped by their block class. Inner-page styles at the end. */
:root {
  --night: #0A1540;
  --night-2: #14266B;
  --ink: #0B1633;
  --ink-2: #45516E;
  --blue: #336AF6;
  --blue-deep: #2152D9;
  --sky: #E6EDFF;
  --paper: #F5F7FB;
  --white: #FFFFFF;
  --line: #DCE2EE;
  --star: #FFC857;
  --run: #16A374;

  --f-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --f-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;

  --t-hero: clamp(2.7rem, 1.2rem + 5vw, 5.4rem);
  --t-h2: clamp(1.85rem, 1.15rem + 2.3vw, 3rem);
  --t-h3: 1.2rem;
  --t-lede: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);

  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font: 400 1.0625rem/1.6 var(--f-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-deep); }
h1, h2, h3 { font-family: var(--f-display); margin: 0; color: inherit; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--star); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(1200px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--white); padding: 10px 14px; border-radius: var(--r-sm); }
.skip:focus { top: 12px; }

.h-section {
  font-size: var(--t-h2);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.022em;
  max-width: 20ch;
  font-variation-settings: "opsz" 72;
}
.lede { font-size: var(--t-lede); color: var(--ink-2); max-width: 58ch; margin-top: 1rem; }

/* Buttons: three weights by hierarchy, no arrows. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: 0 1.3rem; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 1rem/1 var(--f-body); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 40px; padding: 0 1rem; font-size: .95rem; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-deep); }
.btn--line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--line:hover { background: var(--ink); color: var(--white); }
.btn--wish { background: var(--star); color: var(--ink); }
.btn--wish:hover { background: #FFD884; }
.btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.link-quiet { color: inherit; text-decoration: none; font-weight: 500; }
.link-quiet:hover { text-decoration: underline; text-underline-offset: 4px; }
.link-strong { font-weight: 600; text-underline-offset: 4px; }

/* NAV: transparent on the sky, solid after scroll. */
.nav { position: fixed; inset: 0 0 auto; z-index: 40; color: var(--white); transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.nav__row { display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav__logo img { height: 24px; width: auto; }
.nav .logo--dark { display: none; }
.nav__links { display: flex; gap: 1.6rem; margin-right: auto; }
.nav__links a { color: inherit; text-decoration: none; font-weight: 500; font-size: .98rem; opacity: .86; }
.nav__links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.nav__cta { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; }
.nav__burger { display: none; background: none; border: 0; color: inherit; padding: 8px; cursor: pointer; }
.nav.is-scrolled { background: rgba(10,21,64,.82); backdrop-filter: saturate(1.3) blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav.is-solid { background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: saturate(1.4) blur(10px); }
.nav.is-solid .logo--dark { display: block; }
.nav.is-solid .logo--light { display: none; }
.mnav { display: grid; background: var(--white); color: var(--ink); padding: .5rem var(--gutter) 1.2rem; box-shadow: 0 12px 30px rgba(10,21,64,.15); }
.mnav[hidden] { display: none; }
.mnav a { color: inherit; text-decoration: none; padding: .8rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.mnav a.mnav__cta { margin-top: 1rem; border-bottom: 0; padding: 0 1.3rem; color: var(--white); }

/* HERO: the night sky of apps. */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(70% 60% at 78% 40%, rgba(51,106,246,.42), transparent 70%),
    radial-gradient(40% 40% at 10% 100%, rgba(255,200,87,.10), transparent 70%),
    linear-gradient(180deg, var(--night) 0%, #0D1B52 100%);
  padding: 128px 0 0;
}
.hero::before, .phero::before { /* faint star dust, static */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image:
    radial-gradient(1px 1px at 12% 22%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 32% 68%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 58% 12%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 84% 80%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 46% 90%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 6% 58%, #fff 50%, transparent 51%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 2.5rem; align-items: center; min-height: 600px; }
.hero h1 {
  font-size: var(--t-hero); font-weight: 800; line-height: .96; letter-spacing: -0.035em;
  font-variation-settings: "opsz" 96; max-width: 11ch; text-wrap: balance;
}
.hero__lede { margin-top: 1.4rem; font-size: var(--t-lede); color: rgba(255,255,255,.8); max-width: 44ch; }

.wish {
  display: flex; gap: .4rem; margin-top: 2rem; padding: .4rem; max-width: 520px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.wish:focus-within { border-color: var(--star); background: rgba(255,255,255,.12); }
.wish input {
  flex: 1; min-width: 0; background: transparent; border: 0; color: var(--white);
  font: 500 1.05rem var(--f-body); padding: 0 1rem;
}
.wish input::placeholder { color: rgba(255,255,255,.55); }
.wish { position: relative; }
.wish__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 20; margin: 0; padding: .35rem;
  list-style: none; max-height: 320px; overflow-y: auto; border-radius: var(--r-md);
  background: #0E1B4F; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 24px 50px rgba(0,0,0,.4);
}
.wish__list[hidden] { display: none; }
.wish__list li { display: flex; align-items: center; gap: .7rem; padding: .55rem .7rem; border-radius: var(--r-sm); cursor: pointer; color: rgba(255,255,255,.88); }
.wish__list li[aria-selected=true], .wish__list li:hover { background: rgba(255,255,255,.1); color: var(--white); }
.wish__list i { width: 28px; height: 28px; flex: none; border-radius: 7px; background: var(--white); display: grid; place-items: center; }
.wish__list i svg, .wish__list i img { width: 18px; height: 18px; object-fit: contain; }
.wish__list b { font-weight: 500; }
.wish__list small { margin-left: auto; font-size: .8rem; color: rgba(255,255,255,.55); }
.wish input:focus { outline: none; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip {
  font: 500 .9rem var(--f-body); color: rgba(255,255,255,.85); background: transparent;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .4rem .85rem; cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.chip:hover { border-color: var(--star); color: var(--white); }

.sky { position: relative; height: 580px; }
.sky__field { position: absolute; inset: 0; }
.star {
  position: absolute; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 13px;
  display: grid; place-items: center; cursor: pointer; border: 0; padding: 0;
  background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  transition: transform .5s var(--ease), background-color .5s var(--ease), box-shadow .5s var(--ease), opacity .5s var(--ease);
  opacity: calc(.35 + var(--depth, .5) * .55);
  transform: scale(calc(.72 + var(--depth, .5) * .38));
}
.star svg { width: 22px; height: 22px; fill: rgba(255,255,255,.82); transition: fill .5s var(--ease); }
.star:hover { opacity: 1; background: rgba(255,255,255,.14); }
.star.is-lit {
  opacity: 1; transform: scale(1.35); z-index: 3;
  background: var(--white);
  box-shadow: 0 0 0 3px var(--star), 0 0 42px 8px rgba(255,200,87,.45);
}
.star.is-lit svg { fill: var(--lit, var(--ink)); }
/* The console drives the sky: each switch "presses" the tile, each finished step pulses it, Running ripples it. */
.star.is-lit { animation: star-press .7s var(--ease); }
.star.is-lit::after {
  content: ""; position: absolute; inset: -5px; border-radius: 17px; border: 2px solid var(--star);
  opacity: 0; pointer-events: none;
}
.star.is-ripple::after { animation: star-ripple .9s ease-out; }
.star.is-tick { animation: star-tick .34s var(--ease); }
.star.is-peek { opacity: 1; background: rgba(255,255,255,.22); box-shadow: inset 0 0 0 1.5px var(--star); }
.star.is-peek svg { fill: var(--white); }
@keyframes star-press { 0% { transform: scale(1); } 22% { transform: scale(.8); } 62% { transform: scale(1.52); } 100% { transform: scale(1.35); } }
@keyframes star-tick { 0%, 100% { transform: scale(1.35); } 45% { transform: scale(1.48); } }
@keyframes star-ripple { 0% { opacity: .95; transform: scale(.92); } 100% { opacity: 0; transform: scale(1.9); } }

.console {
  position: absolute; left: 4%; bottom: 6%; width: min(360px, 88%); z-index: 4;
  background: rgba(8,16,48,.86); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  padding: 1rem 1.1rem 1.1rem; backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.console__head { display: grid; grid-template-columns: 40px 1fr auto; gap: .75rem; align-items: center; }
.console__mark { width: 40px; height: 40px; border-radius: 10px; background: var(--white); display: grid; place-items: center; }
.console__mark svg { width: 22px; height: 22px; }
.console__title { font: 650 1.05rem/1.2 var(--f-display); }
.console__kind { font-size: .85rem; color: rgba(255,255,255,.65); }
.console__state { font: 500 .78rem var(--f-mono); color: var(--star); display: inline-flex; align-items: center; gap: .4rem; }
.console__state::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.console__state.is-done { color: #52D6A2; }
.console__steps { list-style: none; margin: .9rem 0 0; padding: .8rem 0 0; border-top: 1px dashed rgba(255,255,255,.16); display: grid; align-content: start; gap: .45rem; min-height: 8.6em; font: 400 .86rem/1.4 var(--f-mono); }
.console__steps li { display: grid; grid-template-columns: 18px 1fr; gap: .5rem; color: rgba(255,255,255,.45); transition: color .3s var(--ease); }
.console__steps li::before { content: "·"; text-align: center; }
.console__steps li.is-on { color: rgba(255,255,255,.95); }
.console__steps li.is-on::before { content: "✓"; color: #52D6A2; }
.console__steps li.is-busy::before { content: "◌"; color: var(--star); }
.console__url { margin-top: .8rem; font: 500 .86rem var(--f-mono); color: var(--star); min-height: 1.3em; word-break: break-all; }

.hero__proof {
  position: relative; list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 2rem;
  padding-top: 1.6rem; padding-bottom: 1.6rem; margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: .95rem;
}
.hero__proof li { display: flex; align-items: center; gap: .55rem; }
.hero__proof li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--star); }

/* DOORS: uneven bento. */
.doors { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.doors__grid {
  display: grid; gap: 14px; margin-top: 2.4rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "email email email email hosting hosting"
    "email email email email apps apps"
    "ai ai domains domains agents agents";
}
.door {
  position: relative; display: flex; flex-direction: column; gap: .45rem; padding: 1.5rem;
  border-radius: var(--r-md); background: var(--white); color: var(--ink); text-decoration: none;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .25s var(--ease);
}
.door:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.door h3 { font-size: 1.35rem; font-weight: 650; letter-spacing: -0.01em; }
.door p { color: var(--ink-2); }
.door .door__price { margin-top: auto; padding-top: .8rem; color: var(--ink); }
.door__price strong { font: 800 1.5rem var(--f-display); }
.door .door__soon { margin-top: auto; padding-top: .8rem; font-weight: 600; color: var(--blue-deep); }
.door--email {
  grid-area: email; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(160deg, var(--sky), #F6F9FF 60%); box-shadow: inset 0 0 0 1px #CBD7F7;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 2rem; align-items: end;
}
.door--email h3 { font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; }
.door__text { display: flex; flex-direction: column; gap: .6rem; height: 100%; }
.door--hosting { grid-area: hosting; }
.door--apps { grid-area: apps; }
.door--ai { grid-area: ai; background: var(--night); color: var(--white); box-shadow: none; }
.door--ai p { color: rgba(255,255,255,.72); }
.door--ai .door__soon { color: var(--star); }
.door--ai:hover { box-shadow: 0 0 0 2px var(--star); }
.door--domains { grid-area: domains; }
.door--agents { grid-area: agents; }
.door__logos { display: flex; margin-top: .4rem; }
.door__logos img { width: 30px; height: 30px; border-radius: 8px; background: var(--white); object-fit: contain; box-shadow: 0 0 0 2px var(--white), 0 2px 6px rgba(10,21,64,.15); margin-right: -6px; }

/* Rotating highlight: one door at a time gets a spinning light edge and a soft wash. */
@property --spin { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.door--glow { isolation: isolate; transition: background-color .6s var(--ease), box-shadow .25s var(--ease); }
.door--glow::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px; z-index: -1; pointer-events: none;
  background: conic-gradient(from var(--spin), transparent 0 55%, var(--blue) 72%, var(--star) 86%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .6s var(--ease);
}
.door--glow.is-glow { background: linear-gradient(160deg, var(--white) 30%, var(--sky)); }
.door--glow.is-glow::before { opacity: 1; animation: door-spin 2.4s linear infinite; }
.door--ai.is-glow { background: linear-gradient(160deg, var(--night) 40%, var(--night-2)); }
.door--email.is-glow { background: linear-gradient(160deg, var(--sky), #F6F9FF 60%); box-shadow: inset 0 0 0 1px #CBD7F7; }
@keyframes door-spin { to { --spin: 360deg; } }

.inbox { background: var(--white); border-radius: var(--r-md); box-shadow: 0 20px 50px rgba(20,38,107,.14), inset 0 0 0 1px var(--line); overflow: hidden; }
.inbox__bar { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.inbox__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.inbox__row { display: grid; gap: 2px; padding: .7rem 1rem; border-bottom: 1px solid var(--line); font-size: .88rem; }
.inbox__row:last-child { border-bottom: 0; }
.inbox__row b { font-weight: 600; }
.inbox__row i { font-style: normal; color: var(--ink-2); }
.inbox__row--new { box-shadow: inset 3px 0 0 var(--blue); background: #F7F9FF; }

/* EMAIL: featured, most room. */
.email { padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 6rem); background: var(--white); border-block: 1px solid var(--line); }
.email__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: start; }
.calc { margin-top: 2.2rem; padding: 1.5rem; border-radius: var(--r-lg); background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); max-width: 520px; }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-weight: 500; }
.calc__row output { font: 800 2rem/1 var(--f-display); color: var(--blue-deep); }
.calc__row--small { margin-top: 1.1rem; font-size: .95rem; color: var(--ink-2); }
.calc input[type=range] { width: 100%; margin: .8rem 0 0; accent-color: var(--blue); height: 28px; }
.calc__money { display: inline-flex; align-items: center; gap: .2rem; font-weight: 600; color: var(--ink); }
.calc__money input { width: 5.5rem; font: 600 1rem var(--f-body); padding: .4rem .5rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); color: var(--ink); }
.calc__result { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1.3rem 0 0; }
.calc__result > div { padding: .9rem 1rem; border-radius: var(--r-md); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.calc__result dt { font-size: .88rem; color: var(--ink-2); }
.calc__result dd { margin: .2rem 0 0; font: 800 1.45rem/1.1 var(--f-display); letter-spacing: -0.01em; }
.calc__result .calc__us { background: var(--ink); box-shadow: none; color: var(--white); }
.calc__result .calc__us dt { color: rgba(255,255,255,.7); }
.calc__note { margin-top: .9rem; font-size: .88rem; color: var(--ink-2); }

.feats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.feats li { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.feats h3 { font-size: 1.08rem; font-weight: 650; letter-spacing: -0.005em; }
.feats p { margin-top: .3rem; font-size: .96rem; color: var(--ink-2); }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: clamp(3rem, 6vw, 4.5rem); align-items: end; }
.plan { display: flex; flex-direction: column; gap: .35rem; padding: 1.6rem; border-radius: var(--r-md); background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.plan h3 { font-size: 1.4rem; font-weight: 650; }
.plan__store { color: var(--ink-2); }
.plan__price { margin-top: .8rem; }
.plan__price strong { font: 800 2.4rem/1 var(--f-display); letter-spacing: -0.03em; }
.plan__note { font-size: .88rem; color: var(--ink-2); margin-bottom: 1.1rem; }
.plan .btn { margin-top: auto; }
.plan--lead { background: var(--ink); color: var(--white); box-shadow: none; padding-top: 2rem; padding-bottom: 2rem; }
.plan--lead .plan__store, .plan--lead .plan__note { color: rgba(255,255,255,.72); }
.plan__flag { align-self: flex-start; font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--star); padding: .2rem .6rem; border-radius: 999px; margin-bottom: .4rem; }
.fineprint { margin-top: 1.4rem; font-size: .92rem; color: var(--ink-2); max-width: 90ch; }

/* APPS catalogue */
.apps { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.apps__head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2rem; align-items: end; }
.early { display: grid; gap: .5rem; }
.early label { font-weight: 600; }
.early__row { display: flex; gap: .4rem; padding: .35rem; background: var(--white); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); }
.early__row:focus-within { box-shadow: inset 0 0 0 2px var(--blue); }
.early input { flex: 1; min-width: 0; border: 0; background: transparent; font: 500 1rem var(--f-body); padding: 0 .9rem; color: inherit; }
.early input:focus { outline: none; }
.early__done { font-weight: 600; color: var(--run); }
.early--dark { margin-top: 2rem; max-width: 480px; }
.early--dark .early__row { background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.early--dark .early__row:focus-within { box-shadow: inset 0 0 0 2px var(--star); }
.early--dark input::placeholder { color: rgba(255,255,255,.5); }
.early--dark .early__done { color: #52D6A2; }

.filters { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 2.4rem; }
.filters button {
  font: 500 .92rem var(--f-body); padding: .5rem .95rem; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.filters button:hover { border-color: var(--ink); }
.filters button[aria-pressed=true] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.filters small { opacity: .6; margin-left: .25rem; font-size: .85em; }
.applist { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 8px; }
.applist li { display: flex; align-items: center; gap: .7rem; padding: .7rem .8rem; border-radius: var(--r-sm); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.applist li[hidden] { display: none; }
.apps__more { display: none; margin-top: 1rem; }
@media (max-width: 680px) { .apps__more:not([hidden]) { display: inline-flex; } }
.applist svg { width: 22px; height: 22px; flex: none; }
.applist b { font-weight: 500; font-size: .95rem; line-height: 1.25; }

/* AI: dark band. */
.ai { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--night); color: var(--white); }
.ai .lede { color: rgba(255,255,255,.75); }
.ai__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.ai__list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .8rem; color: rgba(255,255,255,.8); max-width: 52ch; }
.ai__list b { color: var(--white); font-weight: 600; }
.ai__models { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.ai__models span { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .75rem .4rem .45rem; border-radius: 999px; background: rgba(255,255,255,.07); font-size: .9rem; }
.ai__models i { width: 24px; height: 24px; border-radius: 50%; background: var(--white); display: grid; place-items: center; }
.ai__models svg { width: 14px; height: 14px; }
.code { margin: 0; border-radius: var(--r-lg); background: #060D2C; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); overflow: hidden; min-width: 0; }
.code figcaption { padding: .8rem 1.2rem; font-size: .85rem; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.08); }
.code pre { margin: 0; padding: 1.3rem 1.2rem; overflow-x: auto; font: 400 .88rem/1.65 var(--f-mono); color: #C9D5FF; }
.c-k { color: var(--star); }
.c-s { color: #8FE3BF; }
.code__route { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.2rem; border-top: 1px solid rgba(255,255,255,.08); font: 500 .88rem var(--f-mono); }
.code__route span:first-child { color: rgba(255,255,255,.65); }
.code__arrow { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.1), var(--star)); position: relative; }
.code__arrow::after { content: ""; position: absolute; right: 0; top: -3px; border: 3.5px solid transparent; border-left: 6px solid var(--star); border-right: 0; }
[data-route-pick] { color: var(--night); background: var(--star); padding: .2rem .55rem; border-radius: 6px; min-width: 9ch; text-align: center; }

/* HOSTING */
.hosting { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.htable { position: relative; margin-top: 2.2rem; overflow-x: auto; border-radius: var(--r-md); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.htable table { width: 100%; border-collapse: collapse; min-width: 620px; }
.htable th, .htable td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.htable thead th { font: 500 .88rem var(--f-body); color: var(--ink-2); }
.htable tbody th { font: 650 1.05rem var(--f-display); }
.htable tbody th em { font: 600 .78rem var(--f-body); font-style: normal; background: var(--star); padding: .15rem .5rem; border-radius: 999px; margin-left: .5rem; vertical-align: middle; }
.htable td strong { font: 800 1.3rem var(--f-display); }
.htable td small { display: block; font-size: .82rem; color: var(--ink-2); }
.htable td:last-child { text-align: right; }
.htable tr:last-child > * { border-bottom: 0; }
.htable tr.is-lead { background: #F7F9FF; }
.included { margin-top: 1.3rem; color: var(--ink-2); max-width: 90ch; }
.included b { color: var(--ink); }

/* HOW: sequence */
.how { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--white); border-block: 1px solid var(--line); }
.how__steps { list-style: none; counter-reset: step; margin: 2.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.how__steps li { counter-increment: step; position: relative; padding-top: 3.4rem; }
.how__steps li::before { content: counter(step); position: absolute; top: 0; left: 0; font: 800 2.4rem/1 var(--f-display); color: var(--blue); }
.how__steps li:not(:last-child)::after { content: ""; position: absolute; top: 1.2rem; left: 3rem; right: -1rem; height: 1px; background: var(--line); }
.how__steps h3 { font-size: var(--t-h3); font-weight: 650; }
.how__steps p { margin-top: .4rem; color: var(--ink-2); }

/* DOMAINS */
.domains { padding: clamp(4rem, 8vw, 6rem) 0; }
.domains__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; align-items: center; }
.dsearch { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .5rem; border-radius: var(--r-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line), 0 20px 40px rgba(20,38,107,.08); }
.dsearch input { border: 0; font: 600 1.2rem var(--f-body); padding: 0 1rem; min-width: 0; background: transparent; color: var(--ink); }
.dsearch input:focus { outline: none; }
.dsearch:focus-within { box-shadow: inset 0 0 0 2px var(--blue), 0 20px 40px rgba(20,38,107,.08); }
.dsearch__tlds { grid-column: 1 / -1; padding: .4rem 1rem .5rem; font-size: .9rem; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: .3rem 1rem; }

/* PARTNERS */
.partners { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--sky); }
.partners__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 2.2rem; }
.partner { display: flex; flex-direction: column; gap: .7rem; padding: clamp(1.5rem, 3vw, 2.2rem); background: var(--white); border-radius: var(--r-lg); }
.partner h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.partner p { color: var(--ink-2); max-width: 52ch; }
.partner .partner__price { color: var(--ink); font-weight: 600; margin-bottom: .6rem; }
.partner .btn { align-self: flex-start; margin-top: auto; }

/* GUIDES */
.guides { padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem); }
.guides__head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.guides__list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.guides__list a { display: block; padding: 1rem 0; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 500; }
.guides__list a:hover { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 4px; }

/* FAQ */
.faq { padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem); }
.faq__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 2rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: .9rem; font: 400 1.5rem/1 var(--f-display); color: var(--blue); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--ink-2); max-width: 64ch; }

/* CLOSING + FOOTER */
.closing { background: var(--night); color: var(--white); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.closing__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.closing h2 { font-size: var(--t-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; max-width: 18ch; }
.closing__cta { display: flex; gap: .7rem; flex-wrap: wrap; }
.foot { background: #070F30; color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; font-size: .95rem; }
.foot__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2rem; }
.foot__brand img { height: 22px; width: auto; margin-bottom: 1rem; }
.foot nav { display: grid; gap: .45rem; align-content: start; }
.foot h2 { font: 600 .95rem var(--f-body); color: var(--white); margin-bottom: .4rem; }
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--white); text-decoration: underline; }
.foot__base { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }

/* Responsive */
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta .link-quiet { display: none; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .sky { height: 420px; }
  .doors__grid { grid-template-columns: 1fr 1fr; grid-template-areas: "email email" "hosting apps" "ai domains" "agents agents"; }
  .email__grid, .ai__grid, .apps__head, .domains__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .hero { padding-top: 104px; }
  .sky { height: auto; margin-inline: calc(var(--gutter) * -1); }
  .sky__field { position: relative; height: 230px; }
  .console { position: relative; left: auto; bottom: auto; width: auto; margin: .5rem var(--gutter) 0; }
  .applist.is-folded li:nth-child(n+19) { display: none; }
  .wish { flex-direction: column; border-radius: var(--r-md); }
  .wish input { min-height: 44px; }
  .doors__grid { grid-template-columns: 1fr; grid-template-areas: "email" "hosting" "apps" "ai" "domains" "agents"; }
  .door--email { grid-template-columns: 1fr; }
  .feats, .guides__list, .partners__grid, .plans, .how__steps { grid-template-columns: 1fr; }
  .how__steps li::after { display: none; }
  .calc__result { grid-template-columns: 1fr; }
  .dsearch { grid-template-columns: 1fr; }
  .dsearch input { min-height: 48px; }
  .nav__cta .btn { display: none; }
}

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

/* Logo images (projects without a Simple Icons mark). Dim in the sky, full colour when lit. */
.star img { width: 24px; height: 24px; object-fit: contain; border-radius: 6px; filter: grayscale(1) brightness(1.5) contrast(.9); opacity: .8; transition: filter .5s var(--ease), opacity .5s var(--ease); }
.star:hover img, .star.is-lit img, .star.is-peek img { filter: none; opacity: 1; }
.console__mark img { width: 26px; height: 26px; object-fit: contain; border-radius: 6px; }
.applist img { width: 22px; height: 22px; flex: none; object-fit: contain; border-radius: 5px; }

/* ==================== Theme additions: inner pages ==================== */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.early__error { color: #C2334D; font-weight: 500; }
.early--dark .early__error { color: #FF9AAE; }
.early .btn[aria-busy=true] { opacity: .7; cursor: progress; }
.nav__links a[aria-current=page] { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

/* Page hero: a shorter night band opens every inner page, so the nav reads the same everywhere. */
.phero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(60% 90% at 88% 0%, rgba(51,106,246,.4), transparent 70%),
    linear-gradient(180deg, var(--night) 0%, #0D1B52 100%);
  padding: 132px 0 clamp(3rem, 6vw, 4.5rem);
}
.phero .wrap { position: relative; }
.phero h1 {
  font-size: clamp(2.3rem, 1.3rem + 3.4vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96; max-width: 18ch; text-wrap: balance;
}
.phero__lede { margin-top: 1.2rem; font-size: var(--t-lede); color: rgba(255,255,255,.8); max-width: 58ch; }
.phero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.phero__note { margin-top: 1rem; font-size: .92rem; color: rgba(255,255,255,.62); }
.phero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 2.5rem; align-items: end; }
.phero .early { max-width: 480px; }
.phero--post h1 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.2rem); max-width: 24ch; }
.crumbs { font-size: .88rem; color: rgba(255,255,255,.62); margin-bottom: 1.2rem; }
.crumbs a { color: inherit; text-underline-offset: 3px; }
.crumbs .breadcrumb_last { color: rgba(255,255,255,.88); }
.meta { margin-top: 1rem; font-size: .92rem; color: rgba(255,255,255,.65); }

/* Section rhythm for inner pages. */
.band { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.band--white { background: var(--white); border-block: 1px solid var(--line); }
.band--sky { background: var(--sky); }
.band--night { background: var(--night); color: var(--white); }
.band--night .lede { color: rgba(255,255,255,.75); }
.band--night .grid3 li, .band--night .feats li { border-color: rgba(255,255,255,.14); }
.band--night .grid3 p, .band--night .feats p { color: rgba(255,255,255,.72); }
.band__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem 2rem; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.grid3 { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 2rem; }
.grid3 li { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.grid3 h3 { font-size: 1.08rem; font-weight: 650; letter-spacing: -0.005em; }
.grid3 p { margin-top: .3rem; font-size: .96rem; color: var(--ink-2); }
.checks { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .55rem; }
.checks li { display: grid; grid-template-columns: 20px 1fr; gap: .6rem; }
.checks li::before { content: "✓"; color: var(--run); font-weight: 700; }
.band--night .checks li::before, .phero .checks li::before { color: #52D6A2; }
.stat { font: 800 clamp(2.4rem, 1.6rem + 2.4vw, 3.4rem)/1 var(--f-display); letter-spacing: -0.03em; color: var(--blue-deep); }
.card { padding: clamp(1.4rem, 3vw, 2rem); border-radius: var(--r-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.card h2, .card h3 { font-size: 1.35rem; font-weight: 650; letter-spacing: -0.01em; }
.card p { margin-top: .5rem; color: var(--ink-2); }
.card .btn { margin-top: 1.2rem; }

/* Prose: legal pages, posts and guides. */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.7rem; font-weight: 650; letter-spacing: -0.015em; line-height: 1.15; margin-top: 2.2em; }
.prose h3 { font-size: 1.25rem; font-weight: 650; margin-top: 1.8em; }
.prose h4 { font: 600 1.05rem var(--f-body); margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .35em; }
.prose img { height: auto; border-radius: var(--r-md); }
.prose a { text-underline-offset: 3px; }
.prose code { font: .9em var(--f-mono); background: var(--sky); padding: .1em .35em; border-radius: 4px; }
.prose pre { overflow-x: auto; background: #060D2C; color: #C9D5FF; padding: 1rem 1.2rem; border-radius: var(--r-md); font: .88rem/1.6 var(--f-mono); }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose table { display: block; overflow-x: auto; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: .5rem .75rem; text-align: left; vertical-align: top; }
.prose blockquote { margin: 1.5em 0; padding-left: 1.2rem; border-left: 3px solid var(--blue); color: var(--ink-2); }
.prose figure { margin: 1.5em 0; }
.prose figcaption { font-size: .88rem; color: var(--ink-2); margin-top: .5rem; }

.article { padding: clamp(3rem, 6vw, 5rem) 0; }
.article__grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.article__aside { position: sticky; top: 96px; }
.article__aside .btn { width: 100%; }
.article__foot { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; }
.article__foot a { font-weight: 600; text-underline-offset: 4px; }

/* Post lists. */
.posts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.post-card { display: flex; flex-direction: column; gap: .5rem; height: 100%; padding: 1.4rem; border-radius: var(--r-md); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); text-decoration: none; transition: box-shadow .25s var(--ease); }
.post-card:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.post-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r-sm); margin-bottom: .4rem; }
.post-card h2, .post-card h3 { font-size: 1.18rem; font-weight: 650; line-height: 1.25; letter-spacing: -0.005em; }
.post-card p { color: var(--ink-2); font-size: .96rem; }
.post-card time { margin-top: auto; padding-top: .4rem; font-size: .85rem; color: var(--ink-2); }
.pager { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2.2rem; }
.pager .page-numbers { display: inline-grid; place-items: center; min-width: 44px; min-height: 44px; padding: 0 .8rem; border-radius: 999px; background: var(--white); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); text-decoration: none; font-weight: 500; }
.pager .page-numbers.current { background: var(--ink); color: var(--white); box-shadow: none; }
.pager a.page-numbers:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.empty { padding: 2rem; border-radius: var(--r-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.searchform { display: flex; gap: .4rem; padding: .35rem; max-width: 520px; background: var(--white); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); }
.searchform:focus-within { box-shadow: inset 0 0 0 2px var(--blue); }
.searchform input { flex: 1; min-width: 0; border: 0; background: transparent; font: 500 1rem var(--f-body); padding: 0 .9rem; color: var(--ink); }
.searchform input:focus { outline: none; }
.phero .searchform { margin-top: 1.8rem; }

/* App catalogue: each tile links to its own page. */
.applist li { padding: 0; }
.applist a { display: flex; align-items: center; gap: .7rem; flex: 1; min-width: 0; padding: .7rem .8rem; border-radius: inherit; color: inherit; text-decoration: none; transition: box-shadow .2s var(--ease); }
.applist a:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* Single app page. */
.appmark { width: 76px; height: 76px; flex: none; border-radius: 20px; background: var(--white); display: grid; place-items: center; box-shadow: 0 0 0 4px rgba(255,200,87,.35); }
.appmark svg, .appmark img { width: 42px; height: 42px; object-fit: contain; }
.apphead { display: flex; align-items: center; gap: 1.3rem; margin-bottom: 1.4rem; }
.apphead p { color: rgba(255,255,255,.7); font-size: .95rem; }
.facts { display: grid; grid-template-columns: max-content 1fr; gap: .6rem 1.4rem; margin: 0; }
.facts dt { color: var(--ink-2); font-size: .92rem; }
.facts dd { margin: 0; font-weight: 500; overflow-wrap: anywhere; }
.related { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.related a { display: flex; align-items: center; gap: .7rem; padding: .8rem .9rem; border-radius: var(--r-sm); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); text-decoration: none; font-weight: 500; }
.related a:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.related svg, .related img { width: 22px; height: 22px; flex: none; object-fit: contain; }

/* Comparison table: reuses .htable. */
.ctable td, .ctable td:last-child, .ctable thead th:not(:first-child) { text-align: center; }
.ctable .is-us { background: #F7F9FF; }
.yes { color: var(--run); font-weight: 700; }
.no { color: #8A96B0; }

/* Contact Form 7. */
.wpcf7 form > p + p { margin-top: 1rem; }
.wpcf7 label { display: grid; gap: .35rem; font-weight: 500; }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 input[type=url], .wpcf7 select, .wpcf7 textarea {
  width: 100%; font: 500 1rem var(--f-body); padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); color: var(--ink);
}
.wpcf7 textarea { min-height: 160px; resize: vertical; }
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(51,106,246,.2); }
.wpcf7 .wpcf7-submit { display: inline-flex; min-height: 48px; padding: 0 1.4rem; border: 0; border-radius: 999px; background: var(--blue); color: var(--white); font: 600 1rem var(--f-body); cursor: pointer; }
.wpcf7 .wpcf7-submit:hover { background: var(--blue-deep); }
.wpcf7-not-valid-tip { color: #C2334D; font-size: .88rem; margin-top: .3rem; }
.wpcf7 form .wpcf7-response-output { margin: 1rem 0 0; padding: .8rem 1rem; border-radius: var(--r-sm); }


@media (max-width: 1020px) {
  .split, .phero__grid, .article__grid { grid-template-columns: minmax(0, 1fr); }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .article__aside { position: static; }
}
@media (max-width: 680px) {
  .phero { padding-top: 108px; }
  .grid3 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; gap: .1rem; }
  .facts dd { margin-bottom: .7rem; }
  .apphead { align-items: flex-start; }
}

/* Launch trio: the three apps ready first, above the full catalogue. */
.launch { list-style: none; margin: 2.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.launch a {
  display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto 1fr auto; gap: .35rem 1rem; height: 100%;
  padding: 1.4rem; border-radius: var(--r-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink); text-decoration: none; transition: box-shadow .25s var(--ease);
}
.launch a:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.launch__mark { grid-row: 1 / 3; width: 52px; height: 52px; border-radius: 14px; background: var(--paper); display: grid; place-items: center; }
.launch__mark svg, .launch__mark img { width: 28px; height: 28px; object-fit: contain; }
.launch h3 { font-size: 1.25rem; font-weight: 650; align-self: center; }
.launch p { color: var(--ink-2); font-size: .96rem; }
.launch__tag { grid-column: 1 / -1; justify-self: start; margin-top: .7rem; font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--star); padding: .2rem .6rem; border-radius: 999px; }
.apps__rest { margin-top: 3rem; font-size: 1.25rem; font-weight: 650; }
.apps__rest + .filters { margin-top: 1.2rem; }
@media (max-width: 1020px) { .launch { grid-template-columns: minmax(0, 1fr); } }
.empty__search { margin-top: 1.4rem; }

/* Page-template additions (product and company pages). */

/* Links on dark bands read white, not brand blue. */
.band--night a:not(.btn) { color: var(--white); text-underline-offset: 3px; }

/* Domain search placed under a lede (pricing, domains). */
.lede + .dsearch { margin-top: 1.8rem; }

/* Short tables (domain prices) should not force the 620px plan-table width. */
.htable--narrow table { min-width: 0; }
.htable--narrow thead th:last-child { text-align: right; }

/* Two early-access forms stacked in one column. */
.early + .early { margin-top: 1.2rem; }

/* "Browse all apps" style links under a section. */
.band__more { margin-top: 1.6rem; }
.band__head + .posts, .band__head + .empty { margin-top: 2rem; }
.h-section + .feats { margin-top: 1.6rem; }
.band .early:not(.early--dark) { margin-top: 2.2rem; max-width: 480px; }

/* Contact Form 7 forms still carry the old theme grid markup; map it onto the site form layout. */
.hm-contact-form, .hm-contact-form .row { display: grid; gap: 1rem; }
.hm-contact-form .row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hm-contact-form .col-md-12 { grid-column: 1 / -1; }
.hm-contact-form .input-field, .hm-contact-form .dropdown-field { display: grid; gap: .35rem; }
.hm-contact-form label { font-weight: 500; }
.hm-contact-form br { display: none; }
.wpcf7 .submit-btn { margin-top: 1.4rem; }
.wpcf7 button[type=submit] { display: inline-flex; align-items: center; min-height: 48px; padding: 0 1.4rem; border: 0; border-radius: 999px; background: var(--blue); color: var(--white); font: 600 1rem var(--f-body); cursor: pointer; }
.wpcf7 button[type=submit]:hover { background: var(--blue-deep); }
.wpcf7 button[type=submit] i { display: none; }
@media (max-width: 680px) { .hm-contact-form .row { grid-template-columns: minmax(0, 1fr); } }

/* Early-access pair on the pricing page: one card per product, each with its own sign-up. */
.ecards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 2.4rem; }
.ecard { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--r-lg); background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.ecard h3 { font-size: 1.5rem; font-weight: 650; letter-spacing: -0.015em; }
.ecard p { color: rgba(255,255,255,.75); max-width: 52ch; }
.ecard .ecard__tag { font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--star); padding: .2rem .6rem; border-radius: 999px; }
.ecard__marks { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: .2rem 0 0; }
.ecard__marks li { display: inline-flex; align-items: center; gap: .45rem; min-height: 36px; padding: .3rem .8rem .3rem .35rem; border-radius: 999px; background: rgba(255,255,255,.07); font-size: .9rem; }
.ecard__marks li:last-child:not(:has(i)) { padding-left: .8rem; color: rgba(255,255,255,.7); }
.ecard__marks i { width: 26px; height: 26px; border-radius: 50%; background: var(--white); display: grid; place-items: center; }
.ecard__marks svg, .ecard__marks img { width: 16px; height: 16px; object-fit: contain; }
.ecard__more { font-weight: 600; color: var(--white); text-underline-offset: 4px; }
.ecard .early--dark { width: 100%; max-width: none; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 1020px) { .ecards { grid-template-columns: minmax(0, 1fr); } }
.early { grid-template-columns: minmax(0, 1fr); }
/* Guides quote long DNS values (DKIM keys) as plain text; let them wrap instead of widening the page. */
.prose { overflow-wrap: anywhere; }
.searchform { width: 100%; min-width: 0; }
.searchform input { width: 100%; }
