:root {
  --ink: #323232;
  --paper: #f7f5f5;
  --paper-light: #ffffff;
  --white: #ffffff;
  --blue: #2864f0;
  --blue-interactive: #285ac8;
  --blue-hover: #1e46aa;
  --blue-deep: #143278;
  --blue-mid: #73a5ff;
  --blue-soft: #ebf3ff;
  --text: #323232;
  --muted: #6e6b6b;
  --line: rgba(70, 67, 67, 0.16);
  --radius-md: 8px;
  --page-pad: clamp(20px, 4vw, 64px);
  --section-space: clamp(88px, 9vw, 136px);
  --max-width: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-freee-jp: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  --font-freee-latin: "Manrope", "Noto Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper-light);
  font-family: var(--font-freee-jp);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-md);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    height 240ms var(--ease),
    background 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 70px;
  background: rgba(247, 245, 245, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  width: clamp(132px, 11vw, 154px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  font-family: var(--font-freee-jp);
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transition: right 240ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 140px;
  height: 42px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue-interactive);
  border-radius: var(--radius-md);
  transition: background 180ms ease;
}

.nav-cta:hover {
  background: var(--blue-hover);
}

.menu-button {
  position: relative;
  z-index: 52;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 240ms var(--ease),
    top 240ms var(--ease);
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 26px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.noscript-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, 100svh);
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 32%, rgba(255, 255, 255, 0.72) 47%, transparent 67%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 70%, var(--white) 100%);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
  min-height: min(820px, 100svh);
  margin: 0 auto;
  padding: clamp(150px, 18vh, 210px) 0 112px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--blue);
  font-family: var(--font-freee-jp);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-freee-jp);
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.04em;
}

.hero h1 span {
  display: block;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 192px;
  height: 58px;
  padding: 0 22px 0 26px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: background 200ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--blue-interactive);
}

.button-primary:hover {
  background: var(--blue-hover);
}

.button-arrow {
  color: currentColor;
}

.text-link,
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.text-link span,
.service-link span {
  transition: color 200ms ease;
}

.text-link:hover span,
.service-link:hover span {
  color: var(--blue-interactive);
}

.section {
  padding: var(--section-space) var(--page-pad);
}

.services {
  position: relative;
  background: var(--paper-light);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-pad);
  right: var(--page-pad);
  height: 1px;
  background: var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, var(--max-width));
  margin: 0 auto clamp(62px, 7vw, 104px);
}

.section-heading h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-freee-jp);
  font-size: clamp(38px, 4.1vw, 60px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.025em;
}

.section-heading h2 > span,
.fde-card .service-copy h3 > span {
  display: block;
}

.mobile-break {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.service-copy {
  position: relative;
  z-index: 3;
  padding: clamp(54px, 5vw, 78px) clamp(30px, 4vw, 58px) 0;
}

.service-copy h3 {
  margin: 24px 0;
  font-family: var(--font-freee-jp);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.02em;
}

.service-copy > p {
  max-width: 600px;
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
}

.zeimee-card {
  min-height: 700px;
  background: var(--white);
}

.zeimee-card::before {
  content: "";
  position: absolute;
  inset: 0 0 0 46%;
  background: var(--blue-soft);
  border-left: 1px solid rgba(40, 100, 240, 0.14);
}

.zeimee-logo {
  width: clamp(136px, 13vw, 180px);
  height: auto;
  object-fit: contain;
}

.zeimee-card .service-copy {
  width: 46%;
  padding-top: clamp(86px, 8vw, 120px);
}

.service-link {
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.product-stage {
  position: absolute;
  z-index: 2;
  left: 49%;
  right: clamp(26px, 4vw, 58px);
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.product-stage video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(32, 72, 150, 0.14);
}

.fde-card {
  min-height: 560px;
  color: var(--ink);
  background: var(--white);
}

.fde-name {
  color: var(--blue-interactive);
  font-weight: 600;
  letter-spacing: 0.09em;
}

.fde-card .service-copy {
  width: 52%;
  padding-top: clamp(78px, 7vw, 102px);
}

.service-copy > .fde-name {
  font-size: 13px;
}

.fde-card .service-copy h3 {
  margin-top: 19px;
  max-width: 10em;
  font-size: clamp(34px, 3.1vw, 46px);
  text-wrap: balance;
}

.fde-card .service-copy > p:not(.fde-name) {
  color: var(--muted);
}

.service-link-light {
  color: var(--blue-interactive);
}

.fde-flow {
  position: absolute;
  z-index: 3;
  left: 57%;
  right: clamp(30px, 4vw, 58px);
  top: 96px;
  bottom: auto;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(40, 100, 240, 0.28);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(90px, 0.8fr) minmax(120px, 1.2fr);
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(40, 100, 240, 0.2);
  transition: background 180ms ease;
}

.flow-step:hover {
  background: rgba(255, 255, 255, 0.7);
}

.flow-step > span {
  color: var(--blue-interactive);
  font-family: var(--font-freee-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-step strong {
  font-size: 13px;
  font-weight: 600;
}

.flow-step small {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.news {
  background: var(--white);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 142px);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.news-heading h2 {
  margin: 0;
  font-family: var(--font-freee-jp);
  font-size: clamp(38px, 3.7vw, 52px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.news-heading > p:last-child {
  max-width: 260px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.news-item {
  display: grid;
  grid-template-columns: 112px 112px minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 18px;
  min-height: 112px;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

a.news-item:hover {
  background: rgba(235, 243, 255, 0.74);
}

.news-item time {
  font-family: var(--font-freee-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-category {
  display: inline-flex;
  color: var(--blue-interactive);
  font-family: var(--font-freee-latin);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.news-arrow {
  justify-self: end;
  font-family: var(--font-freee-latin);
  font-size: 16px;
}

.company {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-interactive);
}

.company-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
  gap: clamp(64px, 10vw, 154px);
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.eyebrow-light {
  color: var(--blue-soft);
}

.company-message h2 {
  margin: 0;
  font-family: var(--font-freee-jp);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.025em;
}

.company-details dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.company-details dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.company-details dt {
  color: var(--white);
  font-size: 11px;
}

.company-details dd {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.company-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  margin-top: 28px;
  padding: 22px 0;
  color: var(--white);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  transition: background 180ms ease;
}

.company-contact:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fde-card :focus-visible {
  outline-color: var(--blue-mid);
}

.company :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--white);
}

.company-contact span {
  display: grid;
  gap: 8px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}

.company-contact small {
  font-family: var(--font-freee-jp);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-contact i {
  display: block;
  font-family: var(--font-freee-latin);
  font-size: 19px;
  font-style: normal;
}

.contact {
  background: var(--blue-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(520px, 1fr);
  gap: clamp(60px, 9vw, 142px);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.contact-heading h2 {
  margin: 0;
  font-family: var(--font-freee-jp);
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.contact-heading > p:last-child {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.contact-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
}

.form-field label span {
  margin-left: 6px;
  color: var(--blue-interactive);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(40, 90, 200, 0.28);
  border-radius: var(--radius-md);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  height: 56px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 190px;
  padding: 15px 16px;
  line-height: 1.75;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(40, 90, 200, 0.52);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-interactive);
  box-shadow: 0 0 0 3px rgba(40, 100, 240, 0.14);
  outline: none;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #c53a3a;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--blue-interactive);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.contact-submit {
  flex: 0 0 auto;
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.form-status.is-success {
  color: var(--blue-interactive);
  font-weight: 600;
}

.form-status.is-error {
  color: #a42a2a;
  font-weight: 600;
}

.site-footer {
  padding: 68px var(--page-pad) 32px;
  color: var(--white);
  background: var(--blue-deep);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.brand-logo-light {
  filter: brightness(0) invert(1);
}

.footer-top nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-freee-latin);
  font-size: 11px;
  font-weight: 600;
}

.footer-top nav a {
  transition: color 180ms ease;
}

.footer-top nav a:hover {
  color: var(--white);
}

.footer-bottom {
  justify-content: flex-end;
  margin-top: 64px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--font-freee-latin);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
}

[data-reveal].reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(46px, 6.4vw, 68px);
  }

  .zeimee-card {
    min-height: 640px;
  }

  .fde-card {
    min-height: 540px;
  }

  .fde-flow {
    top: 74px;
  }

  .company-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 64px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 68px;
  }

  .menu-button {
    display: block;
  }

  .noscript-nav {
    position: fixed;
    inset: 68px 0 auto;
    z-index: 49;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 46px;
    padding: 10px var(--page-pad);
    overflow-x: auto;
    color: var(--ink);
    background: rgba(247, 245, 245, 0.96);
    border-bottom: 1px solid var(--line);
    font-family: var(--font-freee-latin);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    min-height: 100dvh;
    padding: 116px var(--page-pad) calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-18px);
    transition:
      opacity 240ms ease,
      transform 320ms var(--ease),
      visibility 240ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.menu-active {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 17px 0 19px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(28px, 8vw, 44px);
    font-weight: 600;
    letter-spacing: -0.035em;
  }

  .site-nav > a:first-child {
    border-top: 1px solid var(--line);
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    width: 100%;
    min-width: 0;
    height: 58px;
    margin-top: 34px;
    font-size: 14px;
  }

  .hero {
    min-height: 780px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 52%, rgba(255, 255, 255, 0.72) 67%, transparent 85%),
      linear-gradient(180deg, transparent 70%, var(--white) 100%);
  }

  .hero-art {
    top: 40%;
  }

  .hero-art img {
    object-position: 70% center;
  }

  .hero-inner {
    min-height: 780px;
    padding-top: 142px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zeimee-card,
  .fde-card {
    min-height: 0;
  }

  .zeimee-card::before {
    display: none;
  }

  .zeimee-card .service-copy,
  .fde-card .service-copy {
    width: auto;
    padding: 64px var(--page-pad) 0;
  }

  .product-stage,
  .fde-flow {
    position: relative;
    inset: auto;
    height: auto;
  }

  .product-stage {
    margin: 52px var(--page-pad) 0;
    padding: 36px 24px;
    background: var(--blue-soft);
    border-top: 1px solid rgba(40, 100, 240, 0.14);
  }

  .product-stage video {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .fde-card {
    padding-bottom: 64px;
  }

  .fde-flow {
    margin: 52px var(--page-pad) 0;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .news-heading > p:last-child {
    max-width: 440px;
  }

  .company-inner {
    grid-template-columns: 1fr;
  }

  .company-details {
    max-width: 640px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-heading > p:last-child {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-md: 8px;
    --section-space: 84px;
  }

  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
    padding: 124px 0 88px;
  }

  .hero-art {
    top: 45%;
    bottom: -4%;
  }

  .hero-art img {
    object-position: 64% center;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 1.28;
    letter-spacing: 0.02em;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .section-heading h2 {
    font-size: clamp(33px, 8.8vw, 38px);
    line-height: 1.42;
    letter-spacing: 0.015em;
  }

  .mobile-break {
    display: inline;
  }

  .zeimee-card .service-copy,
  .fde-card .service-copy {
    padding: 52px 20px 0;
  }

  .service-copy h3 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .fde-card .service-copy h3 {
    font-size: 33px;
  }

  .service-copy > p {
    font-size: 13px;
  }

  .product-stage {
    margin: 38px 0 0;
    padding: 28px 14px;
  }

  .product-stage video {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .fde-flow {
    margin: 40px 20px 0;
  }

  .flow-step {
    grid-template-columns: 36px 1fr;
    min-height: 64px;
  }

  .flow-step small {
    display: none;
  }

  .news-item {
    grid-template-columns: 84px minmax(0, 1fr) 20px;
    gap: 12px;
    min-height: 122px;
    padding-right: 4px;
  }

  .news-category {
    grid-column: 1;
    justify-self: start;
  }

  .news-item p {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 13px;
  }

  .news-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .company-message h2 {
    font-size: clamp(34px, 9vw, 36px);
    line-height: 1.42;
    letter-spacing: 0.015em;
  }

  .company-details dl > div {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .company-details dd {
    font-size: 12px;
  }

  .company-contact {
    min-height: 92px;
    padding: 18px 0;
  }

  .contact-heading h2 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .contact-heading > p:last-child {
    font-size: 13px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .contact-submit {
    width: 100%;
    max-width: none;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    gap: 42px;
  }

  .footer-top nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 17px 34px;
  }

  .footer-bottom {
    gap: 12px;
    margin-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal].reveal-ready {
    opacity: 1;
    transform: none;
  }
}
