:root {
  --ink: #07090b;
  --ink-2: #0d1013;
  --panel: #111417;
  --paper: #f3f0e9;
  --white: #ffffff;
  --muted: #9da0a3;
  --line: rgba(255, 255, 255, .12);
  --gold: #d1a553;
  --gold-bright: #e9c875;
  --gold-dark: #8e6729;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--gold-bright);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img {
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 1px rgba(209, 165, 83, .35);
}
.brand-name { letter-spacing: .22em; font-size: 17px; font-style: normal; }
.brand-name b { font-weight: 500; }
.brand-name i { color: var(--gold); font-style: normal; font-weight: 500; }
nav { display: flex; align-items: center; gap: 34px; }
nav a {
  color: #c9cbcc;
  font-size: 13px;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible { color: var(--white); }
.nav-cta {
  border: 1px solid rgba(209, 165, 83, .65);
  padding: 11px 18px;
  color: var(--gold-bright);
}
.menu-toggle { display: none; }

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  align-items: center;
  gap: 60px;
  padding: 150px max(32px, calc((100vw - 1380px) / 2)) 130px;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 30%, rgba(202, 156, 67, .08), transparent 28%),
    linear-gradient(120deg, #080a0c 0%, #090b0d 56%, #0c0d0f 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 28%, black 75%, transparent 100%);
}
.glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(4px); }
.glow-one { width: 480px; height: 480px; right: 9%; top: 21%; border: 1px solid rgba(209,165,83,.09); box-shadow: 0 0 90px rgba(209,165,83,.06); }
.glow-two { width: 680px; height: 680px; right: -7%; top: 10%; border: 1px solid rgba(255,255,255,.035); }
.hero-copy { max-width: 760px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
  margin: 0 0 26px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}
.eyebrow span { display: block; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif);
  font-size: clamp(55px, 6.2vw, 96px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
  margin-bottom: 30px;
  text-wrap: balance;
}
h1 em { color: var(--gold-bright); font-weight: 400; }
.hero-tagline { font-family: var(--serif); font-size: 22px; color: #f2e5c7; margin-bottom: 17px; }
.hero-text { color: var(--muted); max-width: 570px; line-height: 1.75; font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .05em;
  border: 1px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #17120a; font-weight: 700; }
.button-ghost { border-color: rgba(255,255,255,.22); color: #e4e4e4; }
.button-ghost:hover { border-color: rgba(255,255,255,.55); }
.hero-mark { justify-self: center; position: relative; width: min(100%, 490px); aspect-ratio: 1; display: grid; place-items: center; }
.hero-mark img { width: min(74%, 360px); height: auto; border-radius: 50%; box-shadow: 0 32px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(209,165,83,.2); }
.hero-mark p { position: absolute; bottom: 4%; margin: 0; color: #a8aaac; font-size: 11px; text-transform: uppercase; letter-spacing: .38em; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(209,165,83,.14); }
.orbit-one { inset: 5%; }
.orbit-two { inset: -7%; border-color: rgba(255,255,255,.06); }
.trust-strip {
  position: absolute;
  bottom: 0;
  left: max(32px, calc((100vw - 1380px) / 2));
  right: max(32px, calc((100vw - 1380px) / 2));
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.trust-strip div { display: flex; align-items: center; gap: 18px; padding: 24px 32px; border-right: 1px solid var(--line); }
.trust-strip div:first-child { padding-left: 0; }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { color: var(--gold); font-family: var(--serif); font-size: 28px; font-weight: 400; }
.trust-strip span { color: #b9bbbd; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }

.domains-section, .process-section { background: var(--paper); color: #101214; padding: 120px max(32px, calc((100vw - 1280px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.15fr .7fr; gap: 70px; align-items: end; margin-bottom: 62px; }
.section-heading .eyebrow, .about-copy .eyebrow { color: #9c712c; }
.section-heading h2, .about-copy h2, .contact-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 0;
  text-wrap: balance;
}
.section-heading > p { color: #5d6063; line-height: 1.75; margin: 0; max-width: 470px; }
.domain-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.domain-card {
  min-height: 520px;
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0d1013;
  color: var(--white);
  border: 1px solid #1e2225;
  transition: transform .25s ease, box-shadow .25s ease;
}
.domain-card:hover { transform: translateY(-4px); box-shadow: 0 25px 60px rgba(19,17,12,.13); }
.domain-card::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(209,165,83,.10); right: -90px; bottom: -110px; box-shadow: 0 0 70px rgba(209,165,83,.04); }
.domain-top { display: flex; justify-content: space-between; align-items: center; }
.status { display: inline-flex; align-items: center; gap: 8px; color: #d6d7d8; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #63ba7b; box-shadow: 0 0 0 4px rgba(99,186,123,.08); }
.domain-index { color: #62666a; font-family: var(--serif); font-size: 15px; }
.domain-card h3 { font-family: var(--serif); font-size: clamp(35px, 3.8vw, 54px); font-weight: 400; margin: 54px 0 18px; letter-spacing: -.035em; overflow-wrap: anywhere; }
.domain-card h3 span { color: var(--gold-bright); }
.domain-card > p { color: #a8aaac; line-height: 1.65; max-width: 500px; margin-bottom: 24px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tags span { border: 1px solid rgba(255,255,255,.13); padding: 7px 10px; color: #c4c5c6; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.domain-pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 26px; border: 1px solid rgba(255,255,255,.12); }
.domain-pricing div { padding: 15px 16px; display: grid; gap: 7px; }
.domain-pricing div + div { border-left: 1px solid rgba(255,255,255,.12); }
.domain-pricing span { color: #85898c; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.domain-pricing strong { color: #f2f2f2; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.domain-actions { position: relative; z-index: 2; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.domain-link { display: flex; justify-content: space-between; align-items: center; color: var(--gold-bright); text-decoration: none; font-size: 13px; letter-spacing: .04em; }
.domain-link b { font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.domain-link:hover b { transform: translate(3px, -3px); }
.domain-question { display: inline-block; margin-top: 13px; color: #919497; font-size: 11px; line-height: 1.5; text-underline-offset: 3px; transition: color .2s ease; }
.domain-question:hover { color: #d8d9da; }

.about-section { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 690px; background: #0d1013; }
.about-kicker { position: relative; display: grid; place-items: center; overflow: hidden; border-right: 1px solid var(--line); color: rgba(255,255,255,.05); font-size: clamp(82px, 11vw, 170px); letter-spacing: -.08em; font-weight: 800; }
.about-kicker span, .about-kicker i { position: absolute; font-style: normal; }
.about-kicker span { transform: translate(-20%, -18%) rotate(-90deg); }
.about-kicker i { color: rgba(209,165,83,.08); transform: translate(22%, 18%) rotate(-90deg); }
.about-copy { align-self: center; max-width: 780px; padding: 90px clamp(50px, 7vw, 120px); }
.about-copy h2 { margin-bottom: 38px; }
.about-copy > p:not(.eyebrow) { color: #aeb0b2; line-height: 1.82; font-size: 16px; max-width: 670px; }

.process-section { padding-top: 112px; }
.section-heading.compact { grid-template-columns: 1fr; margin-bottom: 54px; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c9c5bc; }
.process-grid li { padding: 32px 42px 10px 0; min-height: 245px; border-right: 1px solid #c9c5bc; }
.process-grid li + li { padding-left: 42px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: #9c712c; font-family: var(--serif); }
.process-grid h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; margin: 44px 0 15px; }
.process-grid p { color: #64676a; line-height: 1.7; font-size: 14px; max-width: 310px; }

.contact-section { background: linear-gradient(110deg, #b38437, #e2be69 55%, #c79a48); color: #15110b; padding: 88px max(32px, calc((100vw - 1280px) / 2)); display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; }
.contact-section .eyebrow { color: #392b16; }
.contact-section > div > p:last-child { margin: 13px 0 0; font-family: var(--serif); font-size: 23px; }
.contact-link { display: flex; justify-content: space-between; align-items: center; min-height: 70px; border-bottom: 1px solid rgba(21,17,11,.5); text-decoration: none; font-size: clamp(16px, 2vw, 23px); }
.contact-link b { font-size: 32px; font-weight: 300; transition: transform .2s ease; }
.contact-link:hover b { transform: translate(4px, -4px); }

footer { width: min(1280px, calc(100% - 64px)); min-height: 140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; color: #777b7e; font-size: 12px; }
footer p { margin: 0; }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }
.footer-brand .brand-name { font-size: 13px; }

@media (max-width: 980px) {
  .site-header { width: calc(100% - 40px); }
  .menu-toggle { display: grid; gap: 5px; padding: 10px; border: 0; background: none; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 1px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  nav { display: none; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 18px; background: rgba(9,11,13,.98); border: 1px solid var(--line); }
  nav.open { display: flex; }
  nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
  nav .nav-cta { margin-top: 10px; padding: 13px; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 150px 30px 170px; }
  .hero-copy { max-width: 760px; }
  .hero-mark { width: 420px; max-width: 84vw; margin-top: 20px; }
  .trust-strip { left: 30px; right: 30px; }
  .trust-strip div { padding: 20px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .domain-grid { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-kicker { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-kicker span, .about-kicker i { transform: none; }
  .about-kicker span { transform: translateX(-20%); }
  .about-kicker i { transform: translateX(26%); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li + li { padding: 28px 0; min-height: 0; border-right: 0; border-bottom: 1px solid #c9c5bc; }
  .process-grid li:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 20px; }
  .contact-section { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; padding: 30px 0; }
  footer p:nth-child(2) { display: none; }
}

@media (max-width: 620px) {
  .brand-name { font-size: 14px; }
  .site-header { height: 80px; }
  .site-header .brand img { width: 44px; height: 44px; }
  .hero { padding: 128px 22px 245px; gap: 30px; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-tagline { font-size: 19px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-mark { width: 300px; }
  .hero-mark p { letter-spacing: .24em; }
  .trust-strip { left: 22px; right: 22px; grid-template-columns: 1fr; }
  .trust-strip div { min-height: 55px; padding: 10px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:first-child { padding-left: 0; }
  .trust-strip div:last-child { border-bottom: 0; }
  .trust-strip strong { font-size: 20px; }
  .domains-section, .process-section { padding: 86px 22px; }
  .domain-card { min-height: 520px; padding: 25px; }
  .domain-card h3 { margin-top: 52px; font-size: 41px; }
  .about-copy { padding: 76px 22px; }
  .contact-section { padding: 70px 22px; }
  .contact-link span { font-size: 14px; }
  footer { width: calc(100% - 44px); grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}

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