
:root {
  --ink: #07111f;
  --ink-2: #111d2d;
  --paper: #f6f8fb;
  --white: #ffffff;
  --muted: #627083;
  --line: #d8dee8;
  --line-dark: rgba(255,255,255,.14);
  --cobalt: #2e63f5;
  --sky: #55b8f3;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 26px 70px rgba(7,17,31,.12);
  --ease: cubic-bezier(.22,1,.36,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--cobalt); }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 200; transform: translateY(-180%); background: #fff; color: var(--ink); padding: 12px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; font-size: 12px; line-height: 1.3; letter-spacing: .18em; text-transform: uppercase; font-weight: 750; }
.eyebrow--muted { color: var(--muted); }
.display { margin: 0; font-size: clamp(3.75rem, 8.7vw, 8.8rem); line-height: .88; letter-spacing: -.072em; font-weight: 680; max-width: 10ch; }
.display em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.06em; }
.heading-xl { margin: 0; font-size: clamp(2.8rem, 6vw, 6.4rem); line-height: .95; letter-spacing: -.06em; font-weight: 680; }
.heading-lg { margin: 0; font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: 1; letter-spacing: -.052em; font-weight: 680; }
.heading-md { margin: 0; font-size: clamp(1.7rem, 2.5vw, 2.55rem); line-height: 1.05; letter-spacing: -.038em; font-weight: 680; }
.lede { margin: 0; max-width: 680px; color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.65; }
.lede--light { color: rgba(246,248,251,.72); }
.rich-copy { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.rich-copy p { margin: 0 0 1.35em; }
.section { padding: clamp(84px, 11vw, 158px) 0; }
.section--dark { color: var(--paper); background: var(--ink); }
.section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr); gap: clamp(40px, 8vw, 120px); align-items: end; margin-bottom: clamp(48px, 7vw, 90px); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: .94rem; font-weight: 720; letter-spacing: -.01em; }
.text-link::after { content: "↗"; transform: translateY(-1px); transition: transform .25s var(--ease); }
.text-link:hover::after, .text-link:focus-visible::after { transform: translate(3px,-4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .94rem; font-weight: 750; transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--cobalt); }
.button--light { color: var(--ink); background: #fff; }
.button--ghost { color: inherit; border-color: currentColor; background: transparent; opacity: .8; }
.button--ghost:hover { opacity: 1; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 100; height: 78px; color: var(--paper); background: rgba(7,17,31,.95); border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(18px); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: inline-flex; align-items: center; width: 184px; }
.nav__brand img { width: 100%; height: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { position: relative; color: rgba(246,248,251,.72); font-size: .9rem; font-weight: 650; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--sky); transition: right .25s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__action { display: inline-flex; align-items: center; min-height: 40px; padding: 0 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .86rem; font-weight: 700; }
.nav__toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-dark); border-radius: 50%; color: #fff; background: transparent; }
.nav__toggle span, .nav__toggle::before, .nav__toggle::after { content: ""; display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }

.hero { position: relative; min-height: calc(100svh - 78px); color: var(--paper); background: var(--ink); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black 0%, transparent 75%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .62fr); gap: clamp(48px, 8vw, 110px); align-items: center; min-height: calc(100svh - 78px); padding: clamp(70px, 10vw, 130px) 0; }
.hero__copy { max-width: 820px; }
.hero__copy .eyebrow { color: var(--sky); }
.hero__copy .lede { margin-top: 34px; max-width: 620px; }
.hero__index { align-self: stretch; display: grid; place-items: center; }
.studio-map { position: relative; width: min(100%, 520px); aspect-ratio: 1/1.1; border: 1px solid var(--line-dark); background: rgba(255,255,255,.018); }
.studio-map::before, .studio-map::after { content: ""; position: absolute; background: rgba(255,255,255,.12); }
.studio-map::before { top: 0; bottom: 0; left: 50%; width: 1px; }
.studio-map::after { left: 0; right: 0; top: 50%; height: 1px; }
.studio-map__label { position: absolute; left: 24px; top: 22px; color: rgba(246,248,251,.46); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.studio-map__path { position: absolute; inset: 14% 15%; border: 1px dashed rgba(85,184,243,.4); border-radius: 50%; transform: rotate(-18deg); }
.map-product { position: absolute; display: grid; place-items: center; width: 74px; height: 74px; border: 1px solid rgba(255,255,255,.14); background: var(--ink-2); box-shadow: 0 12px 34px rgba(0,0,0,.22); transition: transform .4s var(--ease), border-color .4s; }
.map-product:hover { transform: translateY(-6px) rotate(1deg); border-color: rgba(85,184,243,.7); }
.map-product img { width: 42px; height: 42px; }
.map-product:nth-of-type(1) { left: 10%; top: 20%; }
.map-product:nth-of-type(2) { right: 8%; top: 12%; }
.map-product:nth-of-type(3) { right: 2%; top: 48%; }
.map-product:nth-of-type(4) { right: 20%; bottom: 5%; }
.map-product:nth-of-type(5) { left: 18%; bottom: 7%; }
.map-product:nth-of-type(6) { left: 0; top: 50%; }
.map-product__center { position: absolute; left: 50%; top: 50%; width: 126px; height: 126px; transform: translate(-50%,-50%); display: grid; place-items: center; background: #fff; border-radius: 50%; }
.map-product__center img { width: 72px; }
.hero__metrics { position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: 24px; display: flex; gap: 36px; color: rgba(246,248,251,.55); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.hero__metrics strong { color: #fff; font-size: 16px; margin-right: 6px; letter-spacing: 0; }

.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 20px; }
.product-card { grid-column: span 6; display: flex; flex-direction: column; min-height: 620px; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .42s; }
.product-card:nth-child(1), .product-card:nth-child(4) { grid-column: span 7; }
.product-card:nth-child(2), .product-card:nth-child(3) { grid-column: span 5; }
.product-card:hover { transform: translateY(-8px); border-color: rgba(7,17,31,.26); box-shadow: var(--shadow); }
.product-card__visual { aspect-ratio: 16/10; overflow: hidden; background: var(--tint, #eef1f6); }
.product-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.product-card:hover .product-card__visual img { transform: scale(1.018); }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: clamp(26px, 4vw, 42px); }
.product-card__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.product-card__brand img { width: 46px; height: 46px; }
.product-card__title { font-size: clamp(1.8rem, 2.5vw, 2.7rem); letter-spacing: -.045em; margin: 0; }
.product-card__description { margin: 18px 0 28px; max-width: 43ch; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.product-card__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 24px; border-top: 1px solid var(--line); }
.status { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent, var(--cobalt)); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent, var(--cobalt)) 14%, transparent); }
.category { color: var(--muted); font-size: .82rem; }

.lifecycle { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.lifecycle__step { min-height: 310px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.lifecycle__number { display: block; color: var(--sky); font-size: .8rem; letter-spacing: .18em; margin-bottom: 78px; }
.lifecycle__step h3 { margin: 0 0 14px; font-size: 2rem; letter-spacing: -.04em; }
.lifecycle__step p { margin: 0; color: rgba(246,248,251,.58); line-height: 1.6; }
.statement { display: grid; grid-template-columns: 1.05fr .65fr; gap: clamp(48px, 10vw, 150px); align-items: start; }
.statement__quote { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5vw, 5.5rem); line-height: .99; letter-spacing: -.055em; }
.statement__copy { padding-top: 12px; }

.page-hero { color: var(--paper); background: var(--ink); padding: clamp(80px, 10vw, 140px) 0 clamp(84px, 10vw, 150px); }
.page-hero__grid { display: grid; grid-template-columns: 1fr .48fr; gap: 60px; align-items: end; }
.page-hero .lede { margin-top: 28px; }
.page-index { justify-self: end; color: rgba(246,248,251,.44); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.products-page-grid { padding-top: 30px; }

.product-page { --accent: var(--cobalt); --accent-2: var(--sky); --tint: #e7f0ff; --product-dark: var(--ink); }
.theme-quotely { --accent:#6558D9;--accent-2:#B9AEFF;--tint:#EEEBFF;--product-dark:#221A5A; }
.theme-chasely { --accent:#118B63;--accent-2:#79D7B0;--tint:#E3F6EE;--product-dark:#0D4B3A; }
.theme-bidwise { --accent:#2367D1;--accent-2:#78B6FF;--tint:#E5F0FF;--product-dark:#123C78; }
.theme-reviva { --accent:#E34D63;--accent-2:#FF9C73;--tint:#FFE9E5;--product-dark:#7D2637; }
.theme-reviewly { --accent:#C88412;--accent-2:#F1C85B;--tint:#FFF4D7;--product-dark:#6B4708; }
.theme-onboardly { --accent:#0F9891;--accent-2:#70D8CD;--tint:#DFF7F3;--product-dark:#075A56; }
.product-hero { background: var(--tint); padding: clamp(74px,9vw,126px) 0; border-bottom: 1px solid color-mix(in srgb, var(--product-dark) 15%, transparent); }
.product-hero__grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1.1fr); gap: clamp(50px,8vw,110px); align-items: center; }
.product-hero__mark { width: 92px; height: 92px; margin-bottom: 34px; }
.product-hero h1 { margin: 0; color: var(--product-dark); font-size: clamp(4rem,8vw,8.5rem); line-height: .88; letter-spacing: -.07em; }
.product-hero__tagline { margin: 24px 0 0; max-width: 560px; color: var(--product-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem,3vw,3.2rem); line-height: 1.1; letter-spacing: -.035em; }
.product-hero__visual { overflow: hidden; border: 1px solid color-mix(in srgb,var(--product-dark) 16%,transparent); box-shadow: 0 34px 80px color-mix(in srgb,var(--product-dark) 15%,transparent); }
.product-hero__visual img { width:100%; }
.product-stage { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--product-dark); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; }
.product-stage::before { content:""; width: 8px; height:8px; background:var(--accent); border-radius:50%; box-shadow:0 0 0 6px color-mix(in srgb,var(--accent) 16%,transparent); }
.detail-grid { display:grid; grid-template-columns: repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.detail-card { min-height: 310px; padding: 36px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.detail-card__label { display:block; margin-bottom:58px; color:var(--muted); font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:800; }
.detail-card h2 { margin:0 0 18px; font-size:1.75rem; letter-spacing:-.04em; }
.detail-card p { margin:0; color:var(--muted); line-height:1.7; }
.capabilities { display:grid; grid-template-columns:.55fr 1fr; gap: clamp(48px,9vw,140px); align-items:start; }
.capability-list { list-style:none; padding:0; margin:0; border-top:1px solid var(--line); }
.capability-list li { display:grid; grid-template-columns:50px 1fr; gap:18px; align-items:center; padding:24px 0; border-bottom:1px solid var(--line); font-size:1.08rem; font-weight:650; }
.capability-list span { color:var(--accent); font-size:.78rem; letter-spacing:.15em; }

.studio-principles { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:60px; }
.principle { padding:34px; min-height:280px; border:1px solid var(--line); background:#fff; }
.principle__number { color:var(--cobalt); font-size:.78rem; letter-spacing:.16em; }
.principle h3 { margin:72px 0 16px; font-size:1.75rem; letter-spacing:-.04em; }
.principle p { margin:0; color:var(--muted); line-height:1.7; }
.contact-panel { display:grid; grid-template-columns:1fr .55fr; gap:clamp(50px,9vw,130px); align-items:end; padding:clamp(48px,7vw,90px); color:#fff; background:var(--ink); }
.contact-panel__address { display:inline-block; margin-top:38px; font-size:clamp(1.4rem,2.6vw,2.7rem); font-weight:650; letter-spacing:-.04em; border-bottom:1px solid rgba(255,255,255,.35); }
.contact-panel__note { color:rgba(246,248,251,.58); line-height:1.7; }

.brand-preview { background:#eef1f6; }
.brand-preview .site-header { position:relative; }
.preview-intro { padding:70px 0; background:var(--ink); color:#fff; }
.preview-section { padding:72px 0; border-bottom:1px solid var(--line); }
.preview-section__head { display:flex; justify-content:space-between; align-items:end; gap:28px; margin-bottom:36px; }
.preview-board { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); }
.preview-tile { min-width:0; min-height:260px; display:grid; place-items:center; padding:42px; background:#fff; }
.preview-tile--dark { background:var(--ink); }
.preview-tile img { max-width:380px; max-height:118px; }
.brand-row { display:grid; grid-template-columns:250px 1fr; border-top:1px solid var(--line); }
.brand-row__identity { padding:32px; border:1px solid var(--line); border-top:0; background:#fff; }
.brand-row__identity > img { width:72px; height:72px; margin-bottom:22px; }
.brand-row__identity h3 { margin:0 0 7px; font-size:1.7rem; }
.brand-row__identity p { margin:0; color:var(--muted); font-size:.9rem; line-height:1.5; }
.brand-row__assets { display:grid; grid-template-columns:repeat(4,1fr); border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.asset-cell { min-height:190px; display:flex; flex-direction:column; justify-content:space-between; gap:18px; padding:24px; border-left:1px solid var(--line); background:#fff; }
.asset-cell--dark { background:var(--ink); color:#fff; }
.asset-cell img.logo { width:100%; max-height:78px; object-fit:contain; }
.asset-cell img.app { width:86px; height:86px; border-radius:20px; }
.asset-label { color:var(--muted); font-size:10px; letter-spacing:.14em; text-transform:uppercase; }
.asset-cell--dark .asset-label { color:rgba(255,255,255,.48); }
.favicon-test { display:flex; align-items:end; gap:18px; }
.favicon-test img:nth-child(1){width:16px;height:16px}.favicon-test img:nth-child(2){width:32px;height:32px}.favicon-test img:nth-child(3){width:48px;height:48px}
.construction-grid { width:160px; height:160px; display:grid; place-items:center; background-color:#fff; background-image:linear-gradient(#dfe4ed 1px,transparent 1px),linear-gradient(90deg,#dfe4ed 1px,transparent 1px); background-size:20px 20px; border:1px solid var(--line); }
.construction-grid img { width:112px; height:112px; }
.preview-gallery { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.preview-gallery figure { margin:0; border:1px solid var(--line); background:#fff; }
.preview-gallery img { width:100%; }
.preview-gallery figcaption { padding:18px 20px; color:var(--muted); font-size:.85rem; border-top:1px solid var(--line); }

.site-footer { color:var(--paper); background:var(--ink); border-top:1px solid var(--line-dark); }
.footer__main { display:grid; grid-template-columns:1fr auto; gap:50px; padding:70px 0 48px; }
.footer__brand img { width:208px; }
.footer__brand p { max-width:420px; margin:22px 0 0; color:rgba(246,248,251,.55); line-height:1.65; }
.footer__nav { display:grid; grid-template-columns:repeat(2,150px); gap:10px 34px; align-content:start; }
.footer__nav a { color:rgba(246,248,251,.62); font-size:.9rem; }
.footer__nav a:hover { color:#fff; }
.footer__bottom { display:flex; justify-content:space-between; gap:24px; padding:22px 0 30px; border-top:1px solid var(--line-dark); color:rgba(246,248,251,.42); font-size:.77rem; letter-spacing:.04em; }
.reveal { opacity:0; transform:translateY(22px); transition:opacity .75s var(--ease),transform .75s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1040px) {
  .hero__inner, .product-hero__grid { grid-template-columns:1fr; }
  .hero__index { margin-top:20px; }
  .studio-map { max-width:620px; }
  .hero__metrics { display:none; }
  .product-card, .product-card:nth-child(n) { grid-column:span 6; }
  .product-card { min-height:560px; }
  .lifecycle { grid-template-columns:repeat(2,1fr); }
  .page-hero__grid, .statement, .capabilities, .contact-panel { grid-template-columns:1fr; }
  .page-index { justify-self:start; }
  .brand-row { grid-template-columns:1fr; }
  .brand-row__assets { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 760px) {
  :root { --gutter:20px; }
  .site-header { height:70px; }
  .nav__brand { width:164px; }
  .nav__toggle { display:block; }
  .nav__action { display:none; }
  .nav__links { position:fixed; top:70px; left:0; right:0; display:flex; flex-direction:column; align-items:stretch; gap:0; padding:16px var(--gutter) 26px; background:var(--ink); border-bottom:1px solid var(--line-dark); transform:translateY(-130%); visibility:hidden; transition:transform .35s var(--ease),visibility .35s; }
  .nav__links.is-open { transform:translateY(0); visibility:visible; }
  .nav__links a { padding:16px 0; font-size:1rem; border-bottom:1px solid rgba(255,255,255,.08); }
  .nav__links a::after { display:none; }
  .hero__inner { min-height:auto; padding:84px 0 100px; }
  .display { font-size:clamp(3.55rem,17vw,5.2rem); }
  .studio-map { width:100%; }
  .map-product { width:58px; height:58px; }
  .map-product img { width:32px; height:32px; }
  .map-product__center { width:100px; height:100px; }
  .map-product__center img { width:56px; }
  .section-head { grid-template-columns:1fr; gap:28px; }
  .product-grid { display:block; }
  .product-card { min-height:0; margin-bottom:18px; }
  .product-card__meta { align-items:flex-end; }
  .category { text-align:right; max-width:130px; }
  .lifecycle, .detail-grid, .studio-principles { grid-template-columns:1fr; }
  .lifecycle__step { min-height:240px; }
  .lifecycle__number { margin-bottom:50px; }
  .product-hero__grid { grid-template-columns:1fr; }
  .product-hero__visual { order:2; }
  .product-hero h1 { font-size:clamp(4rem,20vw,6.6rem); }
  .product-hero__tagline { font-size:1.7rem; }
  .detail-card { min-height:250px; }
  .preview-board, .preview-gallery { grid-template-columns:1fr; }
  .preview-tile { padding:28px 18px; }
  .preview-tile img { max-width:100%; }
  .brand-row__assets { grid-template-columns:1fr; }
  .preview-section__head { align-items:start; flex-direction:column; }
  .footer__main { grid-template-columns:1fr; }
  .footer__nav { grid-template-columns:1fr 1fr; }
  .footer__bottom { flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
