:root {
  --ink: #15171c;
  --ink-soft: #292d35;
  --paper: #ffffff;
  --surface: #f5f6f8;
  --surface-2: #eceff3;
  --line: #dfe3e8;
  --muted: #69707d;
  --red: #e31325;
  --red-dark: #ad0012;
  --orange: #ff6518;
  --shadow: 0 24px 70px rgba(12, 17, 29, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  padding: 10px 16px; background: var(--paper); border-radius: 8px;
  transform: translateY(-150%); box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(223,227,232,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: block; width: 212px; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.button) { position: relative; padding: 28px 0; }
.site-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; bottom: 21px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange)); transform: scaleX(0); transform-origin: right;
  transition: transform .25s ease;
}
.site-nav > a:hover::after, .site-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 23px; border: 1px solid transparent; border-radius: 10px;
  font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(120deg, var(--red), var(--orange)); box-shadow: 0 14px 34px rgba(227,19,37,.25); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(227,19,37,.34); }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: rgba(255,255,255,.12); }
.button-small { min-height: 43px; padding: 10px 17px; }

.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 720px; padding: 118px 0 104px; color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, #252a33 0, #171a20 36%, #101216 72%);
  background-size: 48px 48px, 48px 48px, auto;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 160px; z-index: -1;
  background: linear-gradient(transparent, rgba(0,0,0,.2));
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .26; z-index: -1; }
.hero-glow-one { width: 420px; height: 420px; background: var(--red); right: -180px; top: 40px; }
.hero-glow-two { width: 280px; height: 280px; background: var(--orange); left: 36%; bottom: -160px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 72px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; font-size: 12px; line-height: 1; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 3px; background: linear-gradient(90deg, var(--red), var(--orange)); border-radius: 3px; }
.eyebrow.dark { color: var(--red-dark); }
.hero h1 { max-width: 760px; margin: 0 0 26px; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.05em; }
.hero h1 em { display: inline-block; padding-bottom: .09em; color: transparent; font-style: normal; background: linear-gradient(100deg, #ff4051, #ff8b2e); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 670px; margin: 0 0 34px; color: #c5cbd4; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 31px; color: #b8bec7; font-size: 13px; font-weight: 700; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points i { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid rgba(255,101,24,.5); border-radius: 50%; color: #ff7a30; font-size: 11px; font-style: normal; }

.hero-visual { position: relative; min-height: 490px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 440px; height: 440px; top: 18px; left: 28px; }
.orbit-two { width: 310px; height: 310px; top: 83px; left: 92px; border-style: dashed; animation: rotate 24s linear infinite; }
.core-card {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 280px; padding: 22px; display: flex; align-items: center; gap: 16px;
  background: rgba(27,31,39,.91); border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.38); backdrop-filter: blur(12px);
}
.core-mark { flex: 0 0 56px; height: 56px; display: grid; place-items: center; border-radius: 15px; color: #fff; font-size: 34px; font-weight: 950; background: linear-gradient(135deg, var(--red), var(--orange)); }
.core-card small, .tech-node small { display: block; color: #8e96a4; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.core-card strong { display: block; margin-top: 4px; font-size: 16px; line-height: 1.3; }
.tech-node {
  position: absolute; z-index: 4; width: 205px; padding: 14px 15px; display: flex; align-items: center; gap: 12px;
  background: rgba(34,38,46,.9); border: 1px solid rgba(255,255,255,.11); border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28); backdrop-filter: blur(10px); animation: float 5s ease-in-out infinite;
}
.tech-node strong { display: block; margin-top: 2px; color: #f5f7fa; font-size: 12px; }
.node-icon { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: #ff7650; background: rgba(227,19,37,.13); font-size: 18px; }
.node-cloud { top: 22px; left: 23px; }
.node-ops { top: 90px; right: -8px; animation-delay: -.7s; }
.node-security { bottom: 43px; right: 16px; animation-delay: -1.7s; }
.node-support { bottom: 25px; left: -2px; animation-delay: -2.5s; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-8px); } }

.capability-bar { padding: 21px 0; background: #090b0e; color: #d9dde3; border-top: 1px solid rgba(255,255,255,.06); }
.capability-list { display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.capability-list i { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: var(--orange); }

.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.section-heading h2, .approach h2, .outcomes h2, .faq h2, .contact h2 { margin: 0; font-size: clamp(37px, 4vw, 55px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p, .approach-intro > p, .outcomes-copy > p, .faq-intro > p { margin: 0; color: var(--muted); font-size: 17px; }

.services { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 420px; padding: 35px 32px 32px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { z-index: 2; transform: translateY(-5px); box-shadow: 0 22px 50px rgba(15,23,42,.11); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 31px; color: var(--red); border-radius: 15px; background: #fff2f1; }
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; top: 38px; right: 30px; margin: 0; color: #c6cbd2; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.02em; }
.service-card > p:not(.service-number) { margin: 0 0 23px; color: var(--muted); }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 8px 0 8px 19px; border-top: 1px solid #edf0f3; color: #424853; font-size: 13px; font-weight: 700; }
.service-card li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.approach { position: relative; color: #fff; background: #15181e; overflow: hidden; }
.approach::after { content: "W"; position: absolute; right: -20px; bottom: -170px; color: rgba(255,255,255,.025); font-size: 620px; line-height: 1; font-weight: 950; }
.approach-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.approach-intro { position: sticky; top: 130px; align-self: start; }
.approach-intro > p { margin: 25px 0 27px; color: #aeb5c0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #ff8060; font-weight: 850; }
.steps { border-top: 1px solid rgba(255,255,255,.15); }
.step { display: grid; grid-template-columns: 78px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.step-number { width: 51px; height: 51px; display: grid; place-items: center; border: 1px solid rgba(255,101,24,.5); border-radius: 50%; color: #ff7b45; font-weight: 900; }
.step h3 { margin: 0 0 7px; font-size: 23px; }
.step p { margin: 0; color: #aeb5c0; }

.outcomes { overflow: hidden; }
.outcomes-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 105px; }
.outcomes-visual { position: relative; min-height: 510px; border-radius: 26px; background: linear-gradient(135deg, #16191f, #272c34); box-shadow: var(--shadow); overflow: hidden; }
.outcomes-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; left: 62px; top: 58px; }
.outcomes-visual::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -160px; bottom: -150px; background: linear-gradient(135deg, var(--red), var(--orange)); filter: blur(15px); opacity: .6; }
.signal-card { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); box-shadow: 0 20px 55px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.signal-main { left: 50%; top: 50%; width: min(74%, 360px); padding: 29px; border-radius: 18px; transform: translate(-50%,-50%); }
.signal-label { display: block; margin-bottom: 12px; color: #ff8053; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.signal-main strong { color: #fff; font-size: 24px; line-height: 1.35; }
.signal-small { display: flex; align-items: center; gap: 9px; padding: 11px 14px; border-radius: 11px; color: #e9edf2; font-size: 11px; font-weight: 800; }
.signal-small i { width: 8px; height: 8px; border-radius: 50%; background: #ff6d35; box-shadow: 0 0 0 5px rgba(255,109,53,.14); }
.signal-a { left: 25px; top: 36px; }
.signal-b { right: 23px; top: 88px; }
.signal-c { right: 36px; bottom: 41px; }
.outcomes-copy > p { margin: 24px 0 29px; }
.value-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 20px 0; border-top: 1px solid var(--line); }
.value-list > div:last-child { border-bottom: 1px solid var(--line); }
.value-list span { color: var(--red); font-size: 11px; font-weight: 950; letter-spacing: .1em; }
.value-list p { margin: 0; color: var(--muted); font-size: 14px; }
.value-list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 17px; }

.focus { background: var(--surface); }
.focus-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.focus-card { min-height: 310px; padding: 28px; display: flex; flex-direction: column; border-radius: 16px; background: #fff; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.focus-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(15,23,42,.09); }
.focus-card span { color: var(--red); font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.focus-card h3 { margin: auto 0 14px; font-size: 20px; line-height: 1.25; }
.focus-card p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro > p { margin-top: 23px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; font-size: 18px; font-weight: 850; cursor: pointer; }
.faq-item button i { position: relative; width: 23px; height: 23px; flex: 0 0 23px; border-radius: 50%; background: #f2f3f5; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 6px; top: 11px; width: 11px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i { background: #ffeded; }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { padding: 0 45px 24px 0; }
.faq-answer p { margin: 0; color: var(--muted); }

.contact { color: #fff; background: #101216; }
.contact-shell { display: grid; grid-template-columns: .74fr 1.26fr; gap: 85px; }
.contact-copy > p { margin: 24px 0 34px; color: #abb2bd; font-size: 17px; }
.contact-details { display: grid; gap: 13px; }
.contact-details a, .contact-details > div { display: block; padding: 17px 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.04); }
.contact-details small { display: block; color: #858e9c; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-details strong { display: block; margin-top: 3px; font-size: 14px; }
.contact-form { padding: 31px; border-radius: 20px; background: #fff; color: var(--ink); box-shadow: 0 26px 75px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 17px; font-size: 12px; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #d9dee5; border-radius: 9px; background: #fafbfc; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 125px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,101,24,.11); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 23px; }
.form-footer p { max-width: 310px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.form-status { margin: 13px 0 0; min-height: 1.4em; color: var(--red-dark); font-size: 12px; font-weight: 700; }

.site-footer { background: #fff; }
.footer-top { min-height: 160px; display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 60px; border-bottom: 1px solid var(--line); }
.footer-brand { width: 230px; }
.footer-top > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; }
.back-top { font-size: 12px; font-weight: 900; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: var(--muted); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--red); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--surface); }
.legal-header { padding: 70px 0 55px; color: #fff; background: #15181e; }
.legal-header h1 { margin: 0 0 12px; font-size: clamp(40px,6vw,68px); letter-spacing: -.05em; }
.legal-header p { margin: 0; color: #b9c0ca; }
.legal-content { max-width: 850px; margin: 55px auto 100px; padding: 45px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.legal-content h2 { margin-top: 34px; font-size: 23px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #555d69; }
.legal-content a { color: var(--red-dark); text-decoration: underline; }

@media (max-width: 1080px) {
  .hero-grid { gap: 25px; }
  .hero h1 { font-size: 58px; }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .focus-grid { grid-template-columns: repeat(2,1fr); }
  .outcomes-grid { gap: 55px; }
  .approach-grid { gap: 60px; }
  .contact-shell { gap: 50px; }
}

@media (max-width: 860px) {
  .section { padding: 84px 0; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; left: 20px; right: 20px; top: 72px; display: grid; gap: 0; padding: 13px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .25s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 14px 12px; border-bottom: 1px solid #edf0f3; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 10px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 90px 0 70px; }
  .hero-grid, .section-heading, .approach-grid, .outcomes-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 45px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-points { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: 500px; max-width: 100%; margin: 0 auto; transform: none; }
  .section-heading { gap: 20px; }
  .approach-intro { position: static; }
  .outcomes-grid { gap: 50px; }
  .outcomes-visual { min-height: 460px; }
  .faq-grid, .contact-shell { gap: 50px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 25px; padding: 35px 0; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  .nav-wrap { height: 71px; }
  .brand { width: 174px; }
  .hero { padding-top: 74px; }
  .hero h1 { font-size: clamp(41px, 13vw, 55px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; justify-content: start; max-width: 245px; margin: 28px auto 0; text-align: left; }
  .hero-visual { min-height: 435px; transform: scale(.85); transform-origin: top center; margin-bottom: -65px; }
  .orbit-one { left: 5px; }
  .orbit-two { left: 69px; }
  .node-ops { right: -18px; }
  .node-support { left: -18px; }
  .capability-list { justify-content: center; flex-wrap: wrap; }
  .capability-list i { display: none; }
  .capability-list span { flex: 0 0 30%; text-align: center; }
  .service-grid, .focus-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .step { grid-template-columns: 56px 1fr; gap: 15px; }
  .outcomes-visual { min-height: 390px; }
  .signal-main { width: 82%; }
  .signal-main strong { font-size: 20px; }
  .signal-a { left: 11px; top: 20px; }
  .signal-b { right: 10px; top: 71px; }
  .signal-c { right: 16px; bottom: 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { width: 210px; }
  .back-top { grid-row: 3; }
  .footer-bottom { padding: 22px 0; align-items: flex-start; flex-direction: column; }
  .legal-content { margin: 30px 14px 70px; padding: 25px; }
}

@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; }
}

/* Mobile hero layout correction */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 66px;
  }

  .hero .container {
    width: calc(100% - 36px);
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .hero-copy .eyebrow {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .13em;
    white-space: normal;
  }

  .hero-copy .eyebrow span {
    width: 28px;
    flex: none;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(36px, 10.8vw, 46px);
    line-height: 1.02;
    letter-spacing: -.045em;
    overflow-wrap: normal;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1 em {
    display: block;
    margin-top: 6px;
    padding-bottom: .12em;
  }

  .hero-lead {
    max-width: 100%;
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-points {
    display: grid;
    justify-content: stretch;
    gap: 14px;
    max-width: none;
    width: 100%;
    margin: 28px 0 0;
    text-align: left;
  }

  .hero-points span {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 370px) {
  .hero .container {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: .1em;
  }
}
