
:root {
  --ink: #0d1724;
  --paper: #f4f1e8;
  --yellow: #f6c944;
  --line: rgba(13, 23, 36, 0.16);
  --muted: #68717b;
}

img {
  max-width: 100%;
}

.brand img.brand-mark {
  display: block;
  object-fit: cover;
}

.about-badge > img {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  width: 44px;
  height: 44px;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.success-card {
  width: min(620px, 100%);
  padding: 54px;
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--yellow);
}

.success-card > img {
  width: 180px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
}

.success-card h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.success-card > p:not(.section-kicker) {
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  color: white;
}

.hero::before {
  position: absolute;
  top: 100px;
  left: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(246, 201, 68, 0.18);
  border-radius: 50%;
  content: "";
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #dce2e8;
  font-size: 14px;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--yellow);
}

.nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.42);
  color: white;
  font-weight: 700;
}

.nav-cta:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 68px;
  align-items: center;
  min-height: 606px;
  padding-block: 44px 90px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #b8c2cc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(60px, 7.6vw, 108px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 em {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin: 40px 0 0;
  color: #c6ced7;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: #ffdc69;
}

.text-link {
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding: 7px 0;
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 480px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 36px 90px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b8c2cc;
  font-size: 12px;
}

.hero-card-top p {
  margin: 0;
}

.availability {
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-weight: 700;
}

.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62d48e;
  box-shadow: 0 0 0 4px rgba(98,212,142,0.12);
}

.service-wheel {
  position: relative;
  width: 310px;
  height: 310px;
  margin: 26px auto 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: var(--paper);
  box-shadow: 14px 14px 0 rgba(246,201,68,0.12);
}

.hero-brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wheel-word {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.wheel-one { top: 17px; left: -20px; }
.wheel-two { right: -25px; top: 92px; }
.wheel-three { right: -18px; bottom: 37px; }

.hero-card-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.13);
  padding-top: 19px;
}

.hero-card-bottom div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-inline: 14px;
  border-right: 1px solid rgba(255,255,255,0.13);
}

.hero-card-bottom div:first-child { padding-left: 0; }
.hero-card-bottom div:last-child { border: 0; }
.hero-card-bottom strong { color: var(--yellow); font-size: 18px; }
.hero-card-bottom span { color: #9ca8b4; font-size: 10px; }

.marquee {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 18px 0;
  background: var(--yellow);
  color: var(--ink);
  white-space: nowrap;
}

.marquee div {
  width: max-content;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.marquee span { margin-inline: 18px; }

.services {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 88px;
  padding-block: 120px;
}

.section-kicker {
  margin-bottom: 20px;
  color: #996f00;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-heading > p:last-child {
  max-width: 410px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  gap: 18px;
  align-items: center;
  min-height: 154px;
  border-bottom: 1px solid var(--line);
}

.service-number {
  align-self: start;
  padding-top: 34px;
  color: #9d7c1e;
  font-size: 11px;
  font-weight: 800;
}

.service-content p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 0 0 8px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.service-content span {
  display: block;
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 18px;
  transition: 160ms ease;
}

.service-card:hover > a {
  transform: translate(2px, -2px);
  border-color: var(--yellow);
  background: var(--yellow);
}

@media (max-width: 900px) {
  .hero-grid,
  .services {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding-top: 70px; }
  .hero-card { max-width: 560px; }
  .services { gap: 60px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 30px, 1180px); }
  .nav { height: 76px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 11px 12px; font-size: 12px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 32px; height: 32px; }
  .hero-grid { gap: 48px; padding-block: 55px 105px; }
  .hero h1 { font-size: clamp(53px, 17vw, 76px); }
  .hero-lead { margin-top: 30px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-card { min-height: 410px; padding: 20px; }
  .service-wheel { width: 250px; height: 250px; }
  .wheel-two { right: -20px; }
  .wheel-three { left: -12px; }
  .hero-card-bottom span { display: none; }
  .services { padding-block: 80px; }
  .service-card { grid-template-columns: 34px 1fr 40px; gap: 10px; }
  .service-content h3 { font-size: 22px; }
  .service-content span { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.market-section {
  overflow: hidden;
  background: #e7e2d5;
  border-block: 1px solid var(--line);
}

.market-inner {
  padding-block: 110px 100px;
}

.market-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}

.market-heading .section-kicker {
  align-self: start;
}

.market-heading h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.market-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.category-card {
  min-height: 470px;
  background: var(--paper);
  border: 1px solid rgba(13,23,36,0.08);
}

.category-main {
  background: var(--ink);
  color: white;
}

.category-visual {
  position: relative;
  height: 275px;
  overflow: hidden;
  border-bottom: 1px solid rgba(13,23,36,0.1);
  background: #d9d4c6;
}

.category-main .category-visual {
  border-color: rgba(255,255,255,0.12);
  background: #151f2c;
}

.tech-visual {
  background:
    radial-gradient(circle at 68% 25%, rgba(246,201,68,0.22), transparent 35%),
    linear-gradient(135deg, #172331, #0b131d);
}

.screen {
  position: absolute;
  top: 58px;
  right: 70px;
  left: 56px;
  height: 137px;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 18px 18px 0 rgba(246,201,68,0.17);
}

.screen::after {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 68px;
  height: 26px;
  border-top: 2px solid rgba(255,255,255,0.55);
  border-right: 2px solid rgba(255,255,255,0.55);
  border-left: 2px solid rgba(255,255,255,0.55);
  content: "";
  transform: translateX(-50%);
}

.screen i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--yellow);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.dial {
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.dial::after {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.signal {
  position: absolute;
  width: 5px;
  background: var(--yellow);
}

.signal-one { top: 36px; left: 27px; height: 24px; }
.signal-two { top: 24px; left: 39px; height: 36px; }

.tool-visual {
  background: var(--yellow);
}

.tool-handle {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 34px;
  height: 190px;
  border-radius: 8px;
  background: var(--ink);
  transform: rotate(42deg);
  transform-origin: bottom;
}

.tool-head {
  position: absolute;
  top: 50px;
  left: calc(50% - 83px);
  width: 160px;
  height: 55px;
  border-radius: 5px 14px 5px 5px;
  background: var(--ink);
  transform: rotate(-18deg);
}

.home-visual {
  background:
    linear-gradient(rgba(13,23,36,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,23,36,0.055) 1px, transparent 1px),
    #d7d2c4;
  background-size: 34px 34px;
}

.home-line {
  position: absolute;
  display: block;
  border: 3px solid var(--ink);
}

.home-one {
  right: 55px;
  bottom: 50px;
  left: 55px;
  height: 120px;
  border-top: 0;
}

.home-two {
  top: 72px;
  left: 50%;
  width: 132px;
  height: 132px;
  border-right: 0;
  border-bottom: 0;
  transform: translateX(-50%) rotate(45deg);
}

.home-dot {
  position: absolute;
  right: 90px;
  bottom: 76px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--yellow);
}

.category-copy {
  padding: 27px 28px 30px;
}

.category-copy p {
  margin: 0 0 13px;
  color: #8c752c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.category-main .category-copy p { color: var(--yellow); }

.category-copy h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.category-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.category-main .category-copy span { color: #aeb8c3; }

.market-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.market-note a {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
}

.market-note a:hover { color: #806000; }

.about {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: center;
  padding-block: 130px;
}

.about-badge {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
  color: white;
}

.about-badge::before,
.about-badge::after {
  position: absolute;
  border: 1px solid rgba(246,201,68,0.32);
  border-radius: 50%;
  content: "";
}

.about-badge::before { inset: 52px; }
.about-badge::after { inset: 92px; }

.about-badge > span {
  z-index: 2;
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 104px;
  font-style: italic;
}

.about-badge small {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.about-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-copy .about-lead {
  margin: 35px 0 20px;
  color: var(--ink) !important;
  font-size: 19px !important;
  font-weight: 700;
  line-height: 1.55 !important;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.values-row div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 18px 0 0;
}

.values-row strong { font-size: 14px; }
.values-row span { color: var(--muted); font-size: 11px; }

.process-section {
  padding-block: 110px;
  background: #111c29;
  color: white;
}

.process-section .shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.process-section .section-kicker { color: var(--yellow); }

.process-title h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-block: 29px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.process-list > li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(246,201,68,0.5);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.process-list h3 { margin: 0 0 7px; font-size: 20px; }
.process-list p { margin: 0; color: #aeb8c2; font-size: 13px; line-height: 1.55; }

.contact-section {
  padding-block: 120px;
  background: var(--yellow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.contact-copy .section-kicker { color: #775d14; }

.contact-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.7;
}

.contact-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 390px;
  padding: 15px 0;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
}

.contact-form {
  padding: 38px;
  background: var(--paper);
  box-shadow: 20px 20px 0 rgba(13,23,36,0.12);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 21px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a8a394;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select { height: 43px; }
.contact-form textarea { padding-top: 12px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--ink); }

.contact-form button {
  width: 100%;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.contact-form button:hover { background: #263548; }

.contact-form small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

footer {
  padding-block: 35px;
  background: #08111b;
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p,
.footer-inner > span { color: #8e9aa6; font-size: 11px; }

@media (max-width: 900px) {
  .market-heading,
  .about,
  .process-section .shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .market-heading { gap: 18px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-main { grid-column: 1 / -1; }
  .about-badge { width: 420px; max-width: 100%; }
  .process-section .shell,
  .contact-grid { gap: 60px; }
}

@media (max-width: 640px) {
  .market-inner,
  .about,
  .process-section,
  .contact-section { padding-block: 78px; }

  .category-grid { grid-template-columns: 1fr; }
  .category-main { grid-column: auto; }
  .market-note { align-items: flex-start; flex-direction: column; gap: 18px; }
  .about { gap: 55px; }
  .about-badge > span { font-size: 84px; }
  .values-row { grid-template-columns: 1fr; }
  .values-row div { border-bottom: 1px solid var(--line); padding-bottom: 17px; }
  .process-section .shell { gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 27px 21px; box-shadow: 10px 10px 0 rgba(13,23,36,0.12); }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
