:root {
  --navy: #173b57;
  --navy-deep: #0d2a3f;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --orange-dark: #c2410c;
  --orange: #f56a36;
  --orange-light: #ff895c;
  --blue: #8ab4c6;
  --blue-pale: #dce9ef;
  --ink-soft: #5e6d76;
  --line: rgba(23, 59, 87, .2);
  --line-soft: rgba(23, 59, 87, .12);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Archivo", sans-serif;
  --shadow: 0 26px 72px rgba(13, 42, 63, .14), 0 8px 24px rgba(194, 65, 12, .05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 4%, rgba(23, 59, 87, .08), transparent 25%),
    radial-gradient(circle at 94% 8%, rgba(194, 65, 12, .055), transparent 23%),
    linear-gradient(to bottom, var(--cream), #fff 30%);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background-image: radial-gradient(rgba(23, 59, 87, .16) .65px, transparent .65px);
  background-size: 8px 8px;
}
a { color: inherit; }
svg { display: block; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--orange-light); }

.topbar { color: var(--navy); background: rgba(255, 255, 255, .82); border-bottom: 1px solid var(--line-soft); }
.topbar-inner {
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 36px; height: 36px; flex: 0 0 auto; display: block; border-radius: 7px; transition: transform .2s ease; }
.brand:hover img,
.brand:focus-visible img { transform: scale(1.05); }
.brand-name { color: #111827; font-size: 18px; font-weight: 700; line-height: 1; letter-spacing: -.01em; white-space: nowrap; }
.brand-name strong { color: var(--orange-dark); font-weight: inherit; }
nav { display: flex; align-items: center; gap: 24px; }
nav a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
nav a:hover,
nav a:focus-visible { color: var(--orange-dark); transform: translateY(-1px); }
.language-link { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 4px; }
.nav-contact {
  padding: 9px 15px;
  color: white;
  background: var(--orange-dark);
  border: 1px solid var(--orange-dark);
  border-radius: 99px;
}
nav .nav-contact:hover,
nav .nav-contact:focus-visible { color: white; background: #9a3412; }
.nav-contact:active { transform: translateY(0); }

.hero { padding: 30px 0 72px; }
.hero-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: var(--navy);
  border: 1px solid rgba(23, 59, 87, .24);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 35%, rgba(138, 180, 198, .28), transparent 25%),
    radial-gradient(circle at 2% 100%, rgba(255, 137, 92, .2), transparent 33%),
    var(--navy);
}
.hero-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 650px;
  height: 650px;
  right: -320px;
  top: 35px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(255, 255, 255, .018), 0 0 0 136px rgba(255, 255, 255, .012);
}
.hero-grid {
  min-height: 640px;
  padding: 68px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 58px;
}
.hero h1 {
  max-width: 690px;
  margin: 0 0 24px;
  font: 500 clamp(58px, 6.4vw, 92px)/.9 var(--display);
  letter-spacing: -.052em;
}
.hero h1 em { color: var(--orange-light); font-weight: 500; }
.hero-lead { max-width: 610px; margin: 0; color: rgba(255, 255, 255, .76); font-size: clamp(17px, 1.55vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  color: var(--navy-deep);
  background: var(--orange-light);
  border: 1px solid var(--orange-light);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); background: #ff9d78; box-shadow: 0 12px 30px rgba(13, 42, 63, .2); }
.button:active { transform: translateY(0); }
.button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.text-link { color: rgba(255, 255, 255, .78); font-size: 12px; font-weight: 600; text-underline-offset: 5px; }
.text-link:hover,
.text-link:focus-visible { color: white; }

.inbox-story { position: relative; min-height: 480px; }
.thread-line { position: absolute; inset: 10px 15px; width: calc(100% - 30px); height: calc(100% - 20px); overflow: visible; }
.thread-line path { fill: none; stroke-linecap: round; }
.thread-base { stroke: rgba(255, 255, 255, .1); stroke-width: 30; }
.thread-orange { stroke: var(--orange-light); stroke-width: 4; stroke-dasharray: 7 14; animation: threadMove 13s linear infinite; }
.thread-blue { stroke: var(--blue); stroke-width: 3; stroke-dasharray: 3 12; animation: threadMove 9s linear infinite reverse; }
@keyframes threadMove { to { stroke-dashoffset: -220; } }
.mail-card {
  position: absolute;
  width: 280px;
  padding: 19px;
  color: var(--navy);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .25);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
.mail-card.customer { left: 0; top: 42px; rotate: -4deg; }
.mail-card.outlook { right: 0; bottom: 38px; rotate: 3deg; animation-delay: -2.5s; }
.mail-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mail-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange-dark); }
.outlook .mail-dot { background: var(--blue); }
.mail-label { color: var(--ink-soft); font-size: 11px; }
.mail-subject { margin: 5px 0 14px; font: 600 23px/1.05 var(--display); }
.mail-rule { height: 6px; margin-top: 7px; background: var(--blue-pale); border-radius: 99px; }
.mail-rule.short { width: 64%; }
.mail-image {
  position: relative;
  width: 94px;
  height: 70px;
  margin-top: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 137, 92, .3), transparent 32%),
    linear-gradient(145deg, var(--blue-pale), #f5ede0);
  border: 1px solid rgba(23, 59, 87, .18);
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .44), 0 7px 16px rgba(13, 42, 63, .08);
}
.mail-image svg { width: 38px; height: 38px; margin-bottom: 13px; fill: rgba(255, 255, 255, .58); stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.mail-image span { position: absolute; inset: auto 0 0; padding: 4px 7px; color: var(--ink-soft); background: rgba(255, 253, 248, .86); border-top: 1px solid rgba(23, 59, 87, .1); font-size: 6px; font-weight: 700; letter-spacing: .06em; }
.ready { display: inline-block; margin-bottom: 9px; padding: 5px 8px; color: var(--navy); background: var(--blue-pale); border-radius: 99px; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ready-success { color: #166534; background: #dcfce7; box-shadow: inset 0 0 0 1px rgba(22, 101, 52, .16); }
.story-note { position: absolute; top: 45%; left: 50%; width: 112px; padding: 14px 10px; translate: -50% -50%; color: white; background: var(--navy-deep); border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; box-shadow: 0 0 0 9px rgba(13, 42, 63, .82); font-size: 9px; font-weight: 700; line-height: 1.35; letter-spacing: .09em; text-align: center; text-transform: uppercase; aspect-ratio: 1; display: grid; place-items: center; }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.promise { min-height: 116px; padding: 25px 28px; background: rgba(255, 255, 255, .84); border: 1px solid var(--line-soft); border-radius: 18px; box-shadow: 0 14px 35px rgba(13, 42, 63, .06); }
.promise strong { display: block; color: var(--orange-dark); font: 600 26px/1 var(--display); }
.promise span { display: block; margin-top: 9px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }

.section { padding: 104px 0; }
.section-heading { margin-bottom: 58px; }
.section-heading > div { max-width: min(100%, clamp(560px, 68vw, 940px)); }
.section-heading h2 { max-width: 100%; margin: 0; text-wrap: balance; font: 600 clamp(45px, 5.5vw, 76px)/.93 var(--display); letter-spacing: -.045em; }
.section-heading p:not(.eyebrow) { max-width: 100%; margin: 22px 0 0; color: var(--ink-soft); font-size: 19px; line-height: 1.6; }
.journey { background: linear-gradient(180deg, rgba(220, 233, 239, .5), rgba(246, 242, 233, .38)); border-block: 1px solid var(--line-soft); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { min-height: 400px; position: relative; overflow: hidden; padding: 34px; color: white; background: var(--navy); border-radius: 20px; box-shadow: 0 20px 48px rgba(13, 42, 63, .13); }
.step:nth-child(2) { background: var(--navy-deep); }
.step::after { content: ""; position: absolute; width: 170px; height: 170px; right: -94px; bottom: -100px; border: 28px solid rgba(138, 180, 198, .22); border-radius: 50%; }
.step > * { position: relative; z-index: 1; }
.step-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--orange-light); background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 137, 92, .38); border-radius: 14px; }
.step-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { max-width: 290px; margin: 24px 0 15px; font: 600 38px/1 var(--display); }
.step p { max-width: 310px; margin: 0; color: rgba(255, 255, 255, .64); font-size: 13px; }
.step-result { position: absolute; left: 34px; bottom: 30px; color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.outlook-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 70px; align-items: center; }
.outlook-copy h2 { margin: 0 0 22px; font: 600 clamp(47px, 5.2vw, 72px)/.93 var(--display); letter-spacing: -.043em; }
.outlook-copy > p:not(.eyebrow) { margin: 0; color: var(--ink-soft); font-size: 15px; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 13px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.check-list svg { width: 20px; height: 20px; fill: none; stroke: var(--orange-dark); stroke-width: 1.8; }
.outlook-window { position: relative; padding: 20px; background: var(--paper); border: 1px solid var(--navy); border-radius: 24px; box-shadow: var(--shadow); rotate: 1.5deg; }
.window-bar { display: flex; align-items: center; gap: 7px; height: 30px; border-bottom: 1px solid var(--line); }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-pale); }
.window-bar i:first-child { background: var(--orange-dark); }
.window-body { padding: 26px 24px 28px; }
.draft-pill { display: inline-block; padding: 6px 9px; color: var(--orange-dark); background: rgba(194, 65, 12, .09); border-radius: 99px; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.window-field { display: grid; grid-template-columns: 64px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.window-field span { color: var(--ink-soft); }
.window-field strong { font-weight: 600; }
.window-message { margin-top: 24px; }
.window-message b { display: block; margin-bottom: 12px; font: 600 24px var(--display); }
.window-message p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.window-attachment { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; padding: 9px 11px; background: var(--blue-pale); border-radius: 8px; font-size: 9px; font-weight: 600; }

.trust { padding: 0 0 104px; }
.trust-shell { padding: 64px; background: rgba(220, 233, 239, .62); border: 1px solid var(--line-soft); border-radius: 28px; }
.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.trust h2 { margin: 0; font: 600 clamp(45px, 4.8vw, 68px)/.95 var(--display); letter-spacing: -.04em; }
.trust-list { display: grid; gap: 12px; }
.trust-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 17px; }
.trust-item > span { color: var(--orange-dark); font-size: 10px; font-weight: 700; }
.trust-item h3 { margin: 0 0 7px; font: 600 24px var(--display); }
.trust-item p { margin: 0; color: var(--ink-soft); font-size: 12px; }

.closing { padding: 0; }
.closing-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; padding: 62px; color: white; background: var(--navy); border-radius: 26px; }
.closing-card::after { content: ""; position: absolute; width: 390px; height: 390px; right: -185px; top: -200px; border: 72px solid rgba(255, 137, 92, .08); border-radius: 50%; }
.closing h2 { max-width: 720px; margin: 0; font: 600 clamp(46px, 5.7vw, 76px)/.92 var(--display); letter-spacing: -.048em; }
.closing-side { position: relative; z-index: 1; }
.closing-side p { margin: 0 0 24px; color: rgba(255, 255, 255, .68); font-size: 14px; }
footer { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 10px; }
footer a { color: var(--orange-dark); text-underline-offset: 3px; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.step:nth-child(2) { transition-delay: .08s; }
.step:nth-child(3) { transition-delay: .16s; }

@media (max-width: 980px) {
  .topbar-inner { min-height: 72px; }
  nav { gap: 16px; }
  nav a:not(.language-link):not(.nav-contact) { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 58px; }
  .hero-copy { max-width: 760px; }
  .inbox-story { width: min(620px, 100%); margin-inline: auto; }
  .step-grid { grid-template-columns: 1fr; }
  .step { min-height: 380px; }
  .outlook-grid, .trust-grid, .closing-card { grid-template-columns: 1fr; }
  .outlook-window { width: min(680px, 100%); margin-inline: auto; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .brand-name { display: none; }
  nav { gap: 10px; }
  .language-link { font-size: 11px; }
  .nav-contact { display: none; }
  .hero { padding: 14px 0 54px; }
  .hero-panel { border-radius: 22px; }
  .hero-grid { min-height: auto; padding: 44px 24px; gap: 34px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .inbox-story { min-height: 450px; }
  .mail-card { width: min(250px, 78vw); }
  .mail-card.customer { top: 28px; }
  .mail-card.outlook { bottom: 24px; }
  .story-note { width: 92px; font-size: 8px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise { min-height: auto; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .step { padding: 28px; }
  .step-result { left: 28px; }
  .outlook-grid { gap: 42px; }
  .outlook-window { padding: 13px; rotate: 0deg; }
  .window-body { padding: 22px 12px; }
  .trust { padding-bottom: 78px; }
  .trust-shell { padding: 38px 24px; }
  .trust-grid { gap: 40px; }
  .closing-card { padding: 38px 28px; }
  footer { min-height: 120px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

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

@media print {
  .js .reveal { opacity: 1; transform: none; }
  .button { color: var(--navy-deep) !important; }
}
