
:root {
  --ink: #f5f3ed;
  --paper: #f1f0eb;
  --paper-ink: #191c1d;
  --muted: #a9acae;
  --surface: #141719;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(21, 24, 25, 0.13);
  --accent: #ff9e3d;
  --accent-strong: #ffb15e;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #0b0d0e;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 158, 61, 0.11), transparent 29%),
    linear-gradient(135deg, #0b0d0e 0%, #111416 58%, #0c0e0f 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.hero::before { width: 680px; height: 760px; right: -180px; bottom: -310px; }
.hero::after { width: 500px; height: 600px; right: -90px; bottom: -240px; }

.nav {
  position: relative;
  z-index: 2;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand,
.nav-menu,
.nav-link,
.eyebrow,
.transfer-note,
.domain-card__top,
.domain-card__bottom,
.project-note__label,
.news-card__meta,
.news-card__link,
.contact-copy li {
  display: flex;
  align-items: center;
}

.brand { gap: 12px; font-size: 15px; font-weight: 680; letter-spacing: -.01em; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 158, 61, .55);
  border-radius: 10px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .06em;
}

.nav-menu { gap: 30px; color: #afb2b3; font-size: 14px; }
.nav-menu > a { transition: color .2s ease; }
.nav-menu > a:hover { color: var(--accent-strong); }
.nav-link { gap: 10px; color: #d8d9d9; }

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--small { width: 16px; height: 16px; }

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 214px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 80px;
  align-items: center;
  padding: 72px 0 68px;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 26px;
  color: #c4c6c7;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 158, 61, .11);
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7.2vw, 6.8rem);
  line-height: .91;
  letter-spacing: -.075em;
  font-weight: 750;
}

h1 span { color: var(--accent); }

.hero-lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: #f5f3ed;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent); color: #17120d; }
.button--primary:hover { background: var(--accent-strong); }
.button--ghost { border-color: var(--line); color: #d9dadb; }
.button--ghost:hover { border-color: rgba(255, 158, 61, .45); }

.transfer-note { gap: 8px; margin-top: 22px; color: #888d90; font-size: 12px; }

.domain-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  box-shadow: 0 40px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(12px);
}

.domain-card__glow {
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  top: -100px;
  border-radius: 50%;
  background: rgba(255, 158, 61, .18);
  filter: blur(40px);
}

.domain-card__top {
  position: relative;
  justify-content: space-between;
  color: #9ea1a3;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status {
  padding: 7px 10px;
  border: 1px solid rgba(255, 158, 61, .28);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 158, 61, .08);
}

.domain-card__name {
  position: relative;
  margin-top: auto;
  padding: 62px 0 28px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 720;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.domain-card__name span { color: var(--accent); }
.domain-card__line { height: 1px; background: var(--line); }
.domain-card__bottom { justify-content: space-between; padding-top: 22px; }
.domain-card__bottom > div { display: flex; flex-direction: column; gap: 5px; }
.domain-card__bottom span { color: #8d9193; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.domain-card__bottom strong { font-size: 15px; }
.domain-card__bottom > a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #16110c; }

.hero-facts {
  position: relative;
  z-index: 1;
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts > div { display: flex; flex-direction: column; justify-content: center; gap: 7px; padding-right: 32px; }
.hero-facts strong { font-size: 14px; font-weight: 680; }
.hero-facts span { color: #7e8385; font-size: 12px; }

.section { padding: 122px 0; }
.section--light { background: var(--paper); color: var(--paper-ink); }
.section-heading { max-width: 750px; }
.kicker { display: block; margin-bottom: 18px; color: #a25719; font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 720;
}

.section-heading > p,
.contact-copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #65696a;
  font-size: 17px;
  line-height: 1.75;
}

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 74px; border-top: 1px solid var(--dark-line); }
.benefit-grid article { min-height: 270px; padding: 30px 36px 30px 0; border-right: 1px solid var(--dark-line); }
.benefit-grid article + article { padding-left: 36px; }
.benefit-grid article:last-child { border-right: 0; }
.benefit-number { color: #a25719; font-size: 12px; font-weight: 750; }
.benefit-grid h3 { margin: 70px 0 14px; font-size: 22px; letter-spacing: -.025em; }
.benefit-grid p { max-width: 280px; margin: 0; color: #676b6c; line-height: 1.65; }

.project-note {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 72px;
  margin-top: 36px;
  padding: 46px 48px;
  border-radius: 24px;
  background: #deddd7;
}

.project-note__label { align-self: start; gap: 12px; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.project-note h3 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.project-note p { margin: 14px 0 0; color: #626667; line-height: 1.72; }

.section--news { background: #111416; }
.section-heading--dark h2 { color: var(--ink); }
.section-heading--dark > p { color: #94999b; }
.news-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.news-search { flex: 0 0 auto; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }

.news-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.news-card:hover { transform: translateY(-4px); border-color: rgba(255, 158, 61, .42); background: rgba(255, 255, 255, .04); }
.news-card__meta { justify-content: space-between; gap: 16px; color: #858a8c; font-size: 11px; }
.news-card__meta span:first-child { color: var(--accent-strong); font-weight: 650; }
.news-card h3 { margin: 62px 0 36px; color: #e9e8e3; font-size: 21px; line-height: 1.45; letter-spacing: -.025em; }
.news-card__link { gap: 9px; margin-top: auto; color: #aaaeb0; font-size: 12px; font-weight: 650; }
.news-card__link .icon { width: 15px; }

.news-card--with-media {
  min-height: 410px;
  padding: 0;
  overflow: hidden;
}

.news-card__media {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #1c2022;
}

.news-card__media img,
.archive-item__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-card__media > span,
.archive-item__media > span { display: none; }

.news-media--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 158, 61, .22), transparent 32%),
    linear-gradient(145deg, #202426, #111416);
}

.news-media--placeholder > span {
  display: block;
  color: rgba(255, 158, 61, .75);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: .08em;
}

.news-card__body {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 26px;
}

.news-card__body h3 { margin: 34px 0 30px; }

.news-card--loading { gap: 24px; pointer-events: none; }
.news-card--loading span { height: 14px; border-radius: 5px; background: linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.075), rgba(255,255,255,.035)); background-size: 240% 100%; animation: shimmer 1.5s infinite; }
.news-card--loading span:nth-child(2) { height: 70px; margin-top: 42px; }
.news-card--loading span:nth-child(3) { width: 45%; margin-top: auto; }
@keyframes shimmer { to { background-position: -240% 0; } }

.news-empty { margin-top: 56px; padding: 34px; border: 1px solid var(--line); border-radius: 18px; color: #94999b; }
.news-empty a { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--accent-strong); font-weight: 650; }

.archive {
  margin-top: 76px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.archive-heading .kicker { margin-bottom: 9px; }
.archive-heading h3 { margin: 0; font-size: 30px; letter-spacing: -.035em; }
.archive-count { color: #858a8c; font-size: 12px; }
.archive-list {
  position: relative;
  display: grid;
  gap: 34px;
}

.archive-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8px;
  bottom: 8px;
  left: 127px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,158,61,.5), rgba(255,158,61,.12) 88%, transparent);
}

.timeline-group,
.timeline-group__items { display: grid; gap: 12px; }

.timeline-group__heading,
.timeline-entry {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px 32px minmax(0, 1fr);
  align-items: center;
}

.timeline-group__dot,
.timeline-entry__dot {
  grid-column: 2;
  grid-row: 1;
  place-self: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px #101314, 0 0 0 6px rgba(255,158,61,.22);
}

.timeline-group__dot { width: 12px; height: 12px; }
.timeline-entry__dot { width: 7px; height: 7px; background: #9b704a; box-shadow: 0 0 0 4px #101314; }

.timeline-group__label {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.timeline-group__label span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 20px;
  padding: 0 7px;
  border: 1px solid rgba(255,158,61,.2);
  border-radius: 999px;
  color: #8f9496;
  font-size: 10px;
  letter-spacing: 0;
}

.timeline-entry__date {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 15px;
  color: #707678;
  font-size: 10px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-entry__date strong { color: #b6b9b7; font-size: 20px; line-height: 1.05; letter-spacing: -.03em; }

.archive-item {
  grid-column: 3;
  display: grid;
  grid-template-columns: 150px 1fr 38px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.archive-item:hover { transform: translateX(3px); border-color: rgba(255,158,61,.38); background: rgba(255,255,255,.035); }
.archive-item__media { width: 150px; height: 90px; overflow: hidden; border-radius: 11px; background: #1c2022; }
.archive-item__body { min-width: 0; }
.archive-item__body h4 { margin: 12px 0 0; color: #e4e3de; font-size: 17px; line-height: 1.45; letter-spacing: -.018em; }
.archive-item__arrow { display: grid; place-items: center; color: #7f8486; }
.archive-item__arrow .icon { width: 16px; }
.archive-more { margin: 26px auto 0; }

.section--process { background: #0c0e0f; }
.process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255, 158, 61, .3); border-radius: 50%; color: var(--accent); font-size: 12px; }
.steps h3 { margin: 0 0 9px; font-size: 20px; letter-spacing: -.02em; }
.steps p { margin: 0; color: #898e90; line-height: 1.6; }

.section--contact { background: #e7e5df; color: var(--paper-ink); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 40px; }
.contact-copy ul { display: grid; gap: 14px; margin: 38px 0 0; padding: 0; list-style: none; color: #585c5d; font-size: 14px; }
.contact-copy li { gap: 10px; }
.contact-copy li .icon { color: #a25719; }

.contact-form { display: grid; gap: 22px; padding: 38px; border-radius: 24px; background: #f5f4ef; box-shadow: 0 24px 70px rgba(47, 45, 40, .09); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 9px; color: #3f4344; font-size: 12px; font-weight: 680; }
.contact-form label > span { color: #a25719; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 24, 25, .14);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: #1d2021;
  font-size: 15px;
  font-weight: 450;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input { height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 130px; padding: 14px; resize: vertical; line-height: 1.6; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #bb6a28; box-shadow: 0 0 0 3px rgba(187, 106, 40, .1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9da0a0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.challenge-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; }
.challenge-row .button { min-width: 190px; height: 50px; }
.form-note { margin: -4px 0 0; color: #777b7c; font-size: 11px; line-height: 1.6; }
.form-status { margin: 0; padding: 12px 14px; border-radius: 10px; background: #e0f0e4; color: #1f6534; font-size: 12px; }
.form-status--error { background: #f7e2df; color: #8b2f25; }
.captcha { min-height: 78px; }
.contact-form > .button { width: 100%; }
.contact-form > .button:disabled { opacity: .65; cursor: wait; transform: none; }

footer { background: #090b0c; }
.footer-inner { min-height: 140px; display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center; color: #777c7e; font-size: 11px; }
.footer-inner .brand { color: #d1d2d0; font-size: 13px; }
.footer-inner p { max-width: 610px; margin: 0; line-height: 1.6; }

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 158, 61, .14), transparent 34%),
    #0b0d0e;
}

.thanks-card {
  width: min(640px, 100%);
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 35px 100px rgba(0,0,0,.35);
}

.thanks-card .kicker { margin-top: 36px; }
.thanks-card h1 { font-size: clamp(2.6rem, 7vw, 4.7rem); line-height: 1; }
.thanks-card p { margin: 26px 0 34px; color: #a2a6a8; font-size: 17px; line-height: 1.7; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; padding: 64px 0; }
  .domain-card { min-height: 270px; }
  .hero { min-height: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article + article { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .benefit-grid h3 { margin-top: 28px; }
  .benefit-grid p { max-width: none; }
  .project-note { grid-template-columns: 1fr; gap: 30px; }
  .news-heading { align-items: start; flex-direction: column; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 240px; }
  .news-card--with-media { min-height: 390px; }
  .news-card h3 { margin-top: 42px; }
  .news-card__body h3 { margin-top: 30px; }
  .process-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-copy { position: static; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 1180px); }
  .nav { height: 78px; }
  .nav-menu > a:first-child { display: none; }
  .brand span:last-child { font-size: 14px; }
  .hero-grid { padding: 54px 0 48px; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); word-break: break-word; }
  .hero-lead { margin-top: 28px; }
  .hero-text { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .domain-card { min-height: 250px; padding: 24px; border-radius: 22px; }
  .domain-card__name { font-size: clamp(1.75rem, 9vw, 2.7rem); white-space: normal; }
  .hero-facts { grid-template-columns: 1fr; padding: 20px 0; }
  .hero-facts > div { min-height: 72px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero-facts > div:last-child { border-bottom: 0; }
  .section { padding: 84px 0; }
  .section-heading > p, .contact-copy > p { font-size: 15px; }
  .benefit-grid { margin-top: 48px; }
  .project-note { margin-top: 26px; padding: 28px 24px; }
  .project-note h3 { font-size: 23px; }
  .news-search { width: 100%; }
  .news-grid { margin-top: 42px; }
  .news-card { min-height: 270px; padding: 24px; }
  .news-card--with-media { padding: 0; }
  .archive-heading { align-items: start; flex-direction: column; }
  .archive-list { gap: 28px; }
  .archive-list::before { left: 9px; }
  .timeline-group__heading,
  .timeline-entry { grid-template-columns: 20px minmax(0, 1fr); }
  .timeline-group__dot,
  .timeline-entry__dot { grid-column: 1; }
  .timeline-group__label,
  .archive-item { grid-column: 2; }
  .timeline-entry__date { display: none; }
  .archive-item { grid-template-columns: 92px 1fr; gap: 14px; padding: 9px; }
  .archive-item__media { width: 92px; height: 78px; }
  .archive-item__arrow { display: none; }
  .archive-item__body .news-card__meta span:last-child { display: none; }
  .archive-item__body h4 { margin-top: 8px; font-size: 14px; }
  .steps li { grid-template-columns: 46px 1fr; gap: 14px; }
  .contact-form { padding: 24px 18px; }
  .form-row, .challenge-row { grid-template-columns: 1fr; }
  .challenge-row .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; padding: 42px 0; }
  .thanks-card { padding: 34px 24px; }
}

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