:root {
  --green-950: #05332d;
  --green-850: #0a463b;
  --green-700: #12624f;
  --green-500: #2d8b70;
  --mint-100: #edf8f4;
  --mint-200: #d6ebe3;
  --gold-500: #c49a3b;
  --coral-500: #d95d52;
  --ink-900: #141816;
  --ink-700: #35413c;
  --ink-500: #65716c;
  --line: #dce8e2;
  --soft: #f7faf8;
  --white: #ffffff;
  --font-body: "Noto Sans JP", sans-serif;
  --font-heading: "Shippori Mincho", serif;
  --font-number: "Inter", sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-700);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  color: var(--ink-900);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 2.45rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  color: var(--ink-900);
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 232, 226, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  height: var(--header-h);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--green-850);
  font-weight: 800;
}

.brand img {
  width: 138px;
  height: auto;
}

.brand span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--ink-700);
  font-family: var(--font-number);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-700);
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--green-700);
  border-radius: 6px;
  color: var(--green-700) !important;
}

.menu-button {
  display: inline-grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--green-850);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.site-header.is-open .site-nav {
  position: absolute;
  top: var(--header-h);
  left: 16px;
  right: 16px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(5, 51, 45, 0.12);
}

.site-header.is-open .site-nav a {
  padding: 10px;
}

/* Brand page direction: bright vertical ad creative inspired by the references. */
.brand-page {
  --brand-sky: #dff2f7;
  --brand-sky-strong: #69b4cf;
  --brand-red: #df3052;
  --brand-yellow: #f2d153;
  --brand-ink: #101917;
  background: #fbfdfc;
  font-family: "M PLUS Rounded 1c", var(--font-body);
}

.brand-page h1,
.brand-page h2,
.brand-page h3 {
  font-family: "M PLUS Rounded 1c", var(--font-body);
  font-weight: 900;
}

.brand-hero {
  position: relative;
  --brand-hero-height: min(760px, calc(100svh - var(--header-h) - 56px));
  min-height: var(--brand-hero-height);
  overflow: hidden;
  background: var(--brand-sky);
}

.brand-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.05);
}

.brand-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(223, 242, 247, 0.98) 0%, rgba(223, 242, 247, 0.82) 38%, rgba(223, 242, 247, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12));
}

.brand-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: var(--brand-hero-height);
  flex-direction: column;
  justify-content: center;
  padding: 54px 0 64px;
}

.brand-ribbon {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  background: var(--brand-red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.brand-hand {
  color: var(--green-700);
  font-family: "Zen Kurenaido", cursive;
  font-size: 1.45rem;
  line-height: 1.2;
}

.brand-hand--top {
  position: absolute;
  top: 76px;
  right: 70px;
  transform: rotate(-6deg);
}

.brand-hero h1 {
  max-width: 710px;
  margin-top: 18px;
  color: var(--brand-ink);
  font-size: 3.2rem;
  line-height: 1.18;
  text-wrap: balance;
}

.brand-hero h1 span {
  display: inline-block;
  font-size: 1.16em;
  letter-spacing: 0;
}

.brand-hero__tagline {
  width: fit-content;
  margin-top: 18px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-850);
  font-size: 1.06rem;
  font-weight: 900;
}

.brand-hero__lead {
  max-width: 560px;
  margin-top: 18px;
  color: var(--ink-700);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}

.brand-side-note {
  position: absolute;
  top: 244px;
  left: 560px;
  display: flex;
  flex-direction: row-reverse;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-ink);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.7;
}

.brand-side-note span {
  display: block;
  writing-mode: vertical-rl;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.brand-badge {
  display: inline-grid;
  width: 112px;
  min-height: 112px;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 14px 32px rgba(16, 25, 23, 0.12);
}

.brand-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.brand-badge--blue {
  background: var(--brand-sky-strong);
}

.brand-badge--white {
  border: 2px solid var(--brand-sky-strong);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-850);
}

.brand-badge--red {
  background: var(--brand-red);
}

.brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.brand-access-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-ink);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 25, 23, 0.08);
}

.brand-corner-arrow {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 54px;
  height: 54px;
  place-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-ink);
  font-family: var(--font-number);
  font-size: 1.4rem;
  font-weight: 800;
}

.brand-page .button {
  border-radius: 8px;
}

.brand-page .button--primary {
  background: var(--brand-yellow);
}

.brand-page .section--lead,
.brand-page .section--soft {
  background: #f4fbfa;
}

.brand-page .section-kicker {
  color: var(--brand-red);
}

.brand-page .section-heading h2,
.brand-page .section-copy h2 {
  color: var(--brand-ink);
}

.brand-page .gene-card:nth-child(1),
.brand-page .gene-card:nth-child(4) {
  background: #edf8f4;
}

.brand-page .gene-card:nth-child(2),
.brand-page .gene-card:nth-child(5) {
  background: #f7f0df;
}

.brand-page .gene-card:nth-child(3) {
  background: #eef5fb;
}

.brand-page .plan-card--featured {
  border-color: var(--brand-red);
  box-shadow: 0 18px 46px rgba(223, 48, 82, 0.13);
}

.brand-report {
  overflow: hidden;
}

.brand-report-stack {
  position: relative;
  min-height: 520px;
  margin: 0;
}

.brand-report-stack__paper {
  width: min(70%, 330px);
  margin-left: auto;
  border: 1px solid rgba(105, 180, 207, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(16, 25, 23, 0.12);
}

.brand-report-stack__phone {
  position: absolute;
  left: 4%;
  bottom: 34px;
  width: min(54%, 260px);
  border: 1px solid rgba(105, 180, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 25, 23, 0.12);
}

.brand-report-stack__note {
  position: absolute;
  left: 0;
  top: 42px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--brand-ink);
  font-family: "Zen Kurenaido", cursive;
  font-size: 1.55rem;
  line-height: 1.25;
  transform: rotate(-5deg);
}

.brand-report-stack__seal {
  position: absolute;
  right: 4%;
  bottom: 88px;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 16px 34px rgba(223, 48, 82, 0.2);
}

.brand-proof {
  background: linear-gradient(180deg, #fbfdfc 0%, #f3fbfd 100%);
}

.brand-proof .metric-grid {
  border-top: 0;
}

.brand-proof .metric-card {
  padding: 26px;
  border: 1px solid rgba(105, 180, 207, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 25, 23, 0.06);
}

.brand-proof .metric-card strong {
  color: var(--brand-red);
}

.brand-proof .metric-card h3 {
  color: var(--brand-ink);
}

.brand-final-cta {
  background:
    linear-gradient(135deg, rgba(223, 242, 247, 0.94), rgba(255, 255, 255, 0.88)),
    var(--brand-sky);
  color: var(--ink-700);
}

.brand-final-cta h2 {
  color: var(--brand-ink);
}

.brand-final-cta .button--outline-light {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.pattern-page {
  background: #f7fbfb;
}

.pattern-nav {
  display: flex;
}

.hero-patterns {
  display: grid;
  gap: 28px;
  padding-bottom: 48px;
}

.pattern-intro {
  padding: 64px 0 22px;
}

.pattern-intro h1 {
  margin-top: 8px;
  color: var(--brand-ink);
  font-family: "M PLUS Rounded 1c", var(--font-body);
  font-size: 2.4rem;
}

.pattern-intro p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 14px;
}

.pattern-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-top: 1px solid rgba(105, 180, 207, 0.18);
  border-bottom: 1px solid rgba(105, 180, 207, 0.18);
}

.pattern-hero--poster {
  background: var(--brand-sky);
}

.pattern-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.6;
}

.pattern-hero--poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(223, 242, 247, 0.96), rgba(223, 242, 247, 0.48), rgba(255, 255, 255, 0.22));
  content: "";
}

.pattern-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 640px;
  align-content: center;
}

.pattern-hero h2 {
  margin-top: 18px;
  color: var(--brand-ink);
  font-family: "M PLUS Rounded 1c", var(--font-body);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.14;
}

.pattern-hero h2 span {
  font-size: 1.12em;
}

.pattern-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pattern-hero--card {
  padding: 80px 0;
  background:
    linear-gradient(180deg, #ffffff, #ecf8fb);
}

.pattern-card-layout,
.pattern-report-layout {
  display: grid;
  gap: 42px;
  align-items: center;
}

.pattern-ad-card {
  position: relative;
  width: min(100%, 420px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-sky);
  box-shadow: 0 26px 62px rgba(16, 25, 23, 0.14);
}

.pattern-ad-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  opacity: 0.72;
}

.pattern-ad-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 242, 247, 0.54), rgba(5, 51, 45, 0.34));
  content: "";
}

.pattern-ad-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.pattern-ad-card .brand-ribbon {
  margin: 28px 0 0 24px;
}

.pattern-ad-card h2 {
  margin: 30px 24px 0;
  font-size: 3rem;
}

.pattern-ad-card .brand-hand {
  position: absolute;
  right: 26px;
  top: 110px;
  transform: rotate(-8deg);
}

.pattern-ad-card span,
.pattern-ad-card strong {
  position: absolute;
  left: 24px;
  display: inline-flex;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-ink);
  font-weight: 900;
}

.pattern-ad-card span {
  bottom: 118px;
}

.pattern-ad-card strong {
  bottom: 72px;
}

.pattern-card-copy h2,
.pattern-report-layout h2 {
  margin-top: 12px;
  color: var(--brand-ink);
  font-size: 2.4rem;
}

.pattern-card-copy p:not(.section-kicker),
.pattern-report-layout p:not(.section-kicker) {
  margin-top: 16px;
}

.pattern-hero--report {
  padding: 84px 0;
  background: #f4fbfa;
}

.corporate-page {
  --corp-mint: #27b9a4;
  --corp-mint-dark: #11947f;
  --corp-mint-soft: #e9fbf5;
  --corp-blue-soft: #eef8fb;
  --corp-yellow: #dfe95f;
  --corp-purple: #9e85d3;
  --corp-red: #e7625f;
  background: #fbfefd;
}

.corporate-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.corporate-page .nav-cta,
.corporate-page .button--primary {
  border-color: var(--corp-mint);
  background: var(--corp-mint);
  color: var(--white) !important;
}

.corporate-page .button--secondary {
  border-color: var(--corp-mint);
  color: var(--corp-mint-dark);
}

.corp-kicker {
  color: var(--corp-mint-dark);
  font-family: var(--font-number);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.corp-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(223, 233, 95, 0.28), transparent 24%),
    radial-gradient(circle at 12% 70%, rgba(231, 98, 95, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7fffc 100%);
}

.corp-hero::after {
  position: absolute;
  right: -8%;
  bottom: -26%;
  width: 58%;
  height: 54%;
  border-radius: 50%;
  background: rgba(39, 185, 164, 0.12);
  content: "";
}

.corp-hero__rail {
  position: absolute;
  left: 28px;
  top: 94px;
  z-index: 1;
  color: rgba(17, 148, 127, 0.28);
  font-family: var(--font-number);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.9;
  writing-mode: vertical-rl;
}

.corp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

.corp-hero__copy {
  max-width: 560px;
}

.corp-hero h1 {
  margin-top: 12px;
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.28;
  text-wrap: balance;
}

.corp-hero__copy p:not(.corp-kicker) {
  margin-top: 18px;
  color: var(--ink-700);
  font-weight: 500;
}

.corp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.corp-hero__visual {
  position: relative;
  margin: 0;
  min-height: 430px;
}

.corp-hero__device {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 2;
  width: min(52%, 310px);
}

.corp-hero__screen {
  width: 100%;
  border: 1px solid rgba(17, 148, 127, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(17, 148, 127, 0.14);
}

.corp-hero__device-phone {
  position: absolute;
  right: -26px;
  bottom: -28px;
  width: 36%;
  filter: drop-shadow(0 12px 20px rgba(17, 148, 127, 0.18));
}

.corp-hero__photo img {
  width: min(100%, 390px);
  aspect-ratio: 1.08 / 1;
  margin-left: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 70% center;
}

.corp-hero__visual::before {
  position: absolute;
  inset: 11% 0 auto auto;
  width: min(82%, 390px);
  height: 62%;
  border-radius: 8px;
  background: var(--corp-mint);
  content: "";
  transform: translateX(-6%) rotate(-7deg);
  z-index: -1;
}

.corp-hero__visual::after {
  position: absolute;
  left: 14%;
  top: 0;
  width: 96px;
  height: 170px;
  border: 1px solid rgba(17, 148, 127, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  z-index: -1;
}

.corp-hero__phone {
  display: none;
}

.corp-hero__phone img {
  width: 100%;
}

.corp-hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 14px;
  width: min(260px, 76%);
  padding: 14px;
  border: 1px solid rgba(17, 148, 127, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(17, 148, 127, 0.14);
}

.corp-hero__visual figcaption strong,
.corp-hero__visual figcaption span {
  display: block;
}

.corp-hero__visual figcaption strong {
  color: var(--ink-900);
  font-family: var(--font-number);
}

.corp-hero__visual figcaption span {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.corp-logo-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 148, 127, 0.1);
}

.corp-logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--ink-500);
  font-family: var(--font-number);
  font-size: 0.78rem;
  font-weight: 800;
}

.corp-logo-row span:nth-child(1),
.corp-logo-row span:nth-child(4) {
  color: var(--corp-red);
}

.corp-logo-row span:nth-child(2),
.corp-logo-row span:nth-child(5) {
  color: var(--corp-mint-dark);
}

.corp-wave {
  position: relative;
  overflow: hidden;
  padding: 104px 0 128px;
  background:
    radial-gradient(circle at 88% 20%, rgba(158, 133, 211, 0.18), transparent 13%),
    linear-gradient(180deg, #ffffff 0%, #edfff6 100%);
}

.corp-wave::before {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -20%;
  height: 45%;
  border-radius: 50% 50% 0 0;
  background: rgba(39, 185, 164, 0.76);
  content: "";
  transform: rotate(-5deg);
}

.corp-wave::after {
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: -30%;
  height: 42%;
  border-radius: 50% 50% 0 0;
  background: rgba(39, 185, 164, 0.18);
  content: "";
  transform: rotate(4deg);
}

.corp-wave__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
  align-items: center;
}

.corp-wave h2,
.corp-package h2,
.corp-problem h2,
.corp-features h2,
.corp-roi h2 {
  margin-top: 12px;
  color: var(--ink-900);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.42;
}

.corp-wave p:not(.corp-kicker),
.corp-package p:not(.corp-kicker),
.corp-problem p,
.corp-features p,
.corp-roi p {
  margin-top: 18px;
  color: var(--ink-600, var(--ink-700));
}

.corp-orbit {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(39, 185, 164, 0.22) 0 28%, rgba(255, 255, 255, 0.82) 29% 46%, transparent 47%),
    conic-gradient(from 20deg, rgba(39, 185, 164, 0.12), rgba(158, 133, 211, 0.14), rgba(223, 233, 95, 0.2), rgba(39, 185, 164, 0.12));
}

.corp-orbit__center {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 96px;
  height: 96px;
  place-content: center;
  border-radius: 50%;
  background: var(--corp-mint);
  color: var(--white);
  font-family: var(--font-number);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transform: translate(-50%, -50%);
}

.corp-orbit span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  width: 82px;
  height: 82px;
  place-content: center;
  border: 1px solid rgba(17, 148, 127, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(17, 148, 127, 0.09);
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  transform: translate(-50%, -50%);
}

.corp-package {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0;
  background:
    radial-gradient(circle at 20% 32%, rgba(39, 185, 164, 0.18), transparent 24%),
    linear-gradient(180deg, #f5fbfd 0%, #eef8fb 100%);
}

.corp-bg-word {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: -1;
  font-family: var(--font-number);
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.corp-package > p.corp-bg-word {
  color: rgba(255, 255, 255, 0.94) !important;
}

.corp-package__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  align-items: center;
}

.corp-device {
  position: relative;
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(231, 250, 246, 0.9));
}

.corp-device__screen {
  width: min(100%, 440px);
  margin: 0 auto;
  border: 1px solid rgba(17, 148, 127, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(17, 148, 127, 0.11);
}

.corp-device__phone {
  position: absolute;
  right: 24px;
  bottom: 10px;
  width: min(32%, 126px);
  filter: drop-shadow(0 14px 24px rgba(17, 148, 127, 0.18));
}

.corp-icon-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.corp-icon-row span {
  display: grid;
  min-height: 76px;
  place-content: center;
  border: 1px solid rgba(17, 148, 127, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
  font-weight: 800;
  text-align: center;
}

.corp-problem {
  padding: 84px 0;
  background: #f7fbfb;
}

.corp-problem__grid {
  display: grid;
  gap: 26px;
  align-items: stretch;
}

.corp-chat {
  padding: 28px;
}

.corp-chat ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.corp-chat li {
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(17, 148, 127, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 148, 127, 0.06);
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.corp-chat li:nth-child(even) {
  margin-left: 28px;
}

.corp-answer {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--corp-mint);
  color: var(--white);
}

.corp-answer::before {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.15);
  content: "MANAGEMENT";
  font-family: var(--font-number);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.corp-answer p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  padding: 34px;
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.55;
}

.corp-answer strong {
  display: block;
  font-size: 1.6rem;
}

.corp-answer img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  max-height: 86%;
  object-fit: contain;
  object-position: bottom right;
}

.corp-features {
  position: relative;
  isolation: isolate;
  padding: 92px 0;
  background:
    linear-gradient(180deg, #eef8fb 0%, #f8fcfd 100%);
}

.corp-features .container {
  position: relative;
  z-index: 2;
}

.corp-features__bg {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: -1;
  font-family: var(--font-number);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.corp-features p.corp-features__bg {
  color: rgba(255, 255, 255, 0.96) !important;
}

.corp-feature-grid {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.corp-feature-grid article {
  align-self: center;
}

.corp-feature-grid span {
  color: var(--corp-mint-dark);
  font-family: var(--font-number);
  font-size: 0.76rem;
  font-weight: 800;
}

.corp-feature-grid h3 {
  margin-top: 12px;
  font-size: 1.35rem;
}

.corp-feature-grid figure {
  margin: 0;
}

.corp-feature-grid img {
  width: 100%;
  border: 1px solid rgba(17, 148, 127, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 148, 127, 0.1);
}

.corp-roi {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #f7fefd;
  color: var(--ink-700);
}

.corp-roi::before {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -46%;
  height: 70%;
  border-radius: 50% 50% 0 0;
  background: rgba(39, 185, 164, 0.2);
  content: "";
}

.corp-roi h2,
.corp-roi .corp-kicker {
  color: var(--ink-900);
}

.corp-roi__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.corp-roi__numbers {
  display: grid;
  gap: 12px;
}

.corp-roi__numbers article {
  padding: 20px;
  border: 1px solid rgba(17, 148, 127, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(17, 148, 127, 0.08);
}

.corp-roi__numbers span,
.corp-roi__numbers strong {
  display: block;
}

.corp-roi__numbers span {
  color: var(--ink-500);
  font-weight: 700;
}

.corp-roi__numbers strong {
  margin-top: 6px;
  color: var(--corp-mint-dark);
  font-family: var(--font-number);
  font-size: 2.2rem;
  line-height: 1;
}

.corp-contact {
  padding: 92px 0;
  background: #f7fefd;
}

.corp-contact .contact-layout {
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 185, 164, 0.94), rgba(17, 148, 127, 0.94));
  color: var(--white);
  box-shadow: 0 22px 52px rgba(17, 148, 127, 0.16);
}

.corp-contact h2 {
  color: var(--white);
}

.corp-contact .corp-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.corporate-page .contact-form {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  height: min(760px, calc(100svh - 112px));
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero--brand {
  background-image: url("../images/hero-brand.jpg");
  background-position: center right;
}

.hero--corporate {
  background-image: url("../images/hero-corporate.jpg");
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 51, 45, 0.92) 0%, rgba(5, 51, 45, 0.76) 48%, rgba(5, 51, 45, 0.22) 100%),
    linear-gradient(180deg, rgba(20, 24, 22, 0.12), rgba(20, 24, 22, 0.34));
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.hero h1 {
  color: var(--white);
  text-wrap: balance;
}

.eyebrow,
.section-kicker {
  color: var(--gold-500);
  font-family: var(--font-number);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gold-500);
  color: var(--ink-900);
}

.button--secondary {
  border-color: var(--green-700);
  background: var(--white);
  color: var(--green-700);
}

.button--light {
  background: var(--white);
  color: var(--green-850);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  color: var(--green-700);
  font-weight: 800;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero__proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}

.hero__proof strong {
  color: var(--white);
  font-family: var(--font-number);
  font-size: 1.08rem;
}

.section {
  padding: 72px 0;
}

.section--lead {
  padding-top: 84px;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--cta {
  background: var(--green-850);
  color: rgba(255, 255, 255, 0.86);
}

.section--cta h2 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2 {
  margin-top: 8px;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.section-copy p:not(.section-kicker),
.cta-panel > p:not(.section-kicker),
.contact-copy p:not(.section-kicker) {
  margin-top: 16px;
}

.section-heading--dark {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  gap: 40px;
}

.split--center {
  align-items: center;
}

.section-copy {
  max-width: 610px;
}

.point-list,
.output-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.point-list p,
.output-list p {
  padding-left: 18px;
  border-left: 3px solid var(--gold-500);
}

.point-list strong,
.output-list strong {
  display: block;
  color: var(--ink-900);
}

.section--dark .output-list strong {
  color: var(--white);
}

.point-list span,
.output-list span {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
}

.section--dark .output-list span {
  color: rgba(255, 255, 255, 0.68);
}

.product-figure,
.report-figure,
.media-figure,
.map-figure {
  margin: 0;
}

.product-figure img,
.report-figure img,
.media-figure img,
.map-figure img,
.wide-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-figure {
  max-width: 440px;
  justify-self: center;
}

.product-figure figcaption {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 0.86rem;
  text-align: center;
}

.report-figure {
  max-width: 360px;
  justify-self: center;
}

.gene-grid,
.step-grid,
.metric-grid,
.plan-grid,
.solution-grid,
.risk-grid {
  display: grid;
  gap: 16px;
}

.gene-card,
.step-card,
.metric-card,
.plan-card,
.solution-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.gene-card {
  padding: 22px;
  min-height: 172px;
}

.gene-card span,
.solution-card span,
.process-list span,
.plan-label {
  color: var(--green-700);
  font-family: var(--font-number);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.gene-card h3,
.solution-card h3 {
  margin-top: 12px;
}

.gene-card p,
.solution-card p,
.step-card p,
.plan-card p,
.note {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.step-card {
  overflow: hidden;
}

.step-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.step-card span {
  display: inline-flex;
  margin: 20px 20px 0;
  color: var(--coral-500);
  font-family: var(--font-number);
  font-weight: 800;
}

.step-card h3,
.step-card p {
  padding: 0 20px;
}

.step-card p {
  padding-bottom: 22px;
}

.metric-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-card {
  padding: 26px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.metric-card strong {
  display: block;
  color: var(--gold-500);
  font-family: var(--font-number);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.metric-card h3 {
  margin-top: 14px;
}

.metric-card p {
  margin-top: 8px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.plan-card--featured {
  border-color: var(--green-700);
  box-shadow: 0 18px 46px rgba(18, 98, 79, 0.13);
}

.plan-card h3 {
  margin-top: 6px;
  font-size: 1.3rem;
}

.plan-sub {
  margin-top: 2px !important;
}

.plan-price {
  color: var(--ink-900) !important;
  font-family: var(--font-number);
  font-size: 2rem !important;
  font-weight: 800;
  line-height: 1.15;
}

.plan-price span {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  color: var(--ink-700);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold-500);
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 12px;
  border-radius: 50%;
  background: currentColor;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.profile-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.profile-row figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.profile-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.profile-row figcaption {
  padding: 10px;
  color: var(--ink-700);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.cta-panel {
  max-width: 860px;
}

.risk-grid {
  grid-template-columns: 1fr;
}

.risk-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-950);
  color: var(--white);
}

.risk-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.risk-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 51, 45, 0.25), rgba(5, 51, 45, 0.88));
  content: "";
}

.risk-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
}

.risk-card strong {
  display: block;
  font-family: var(--font-number);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.risk-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.risk-card--plain {
  background:
    linear-gradient(135deg, var(--green-950), var(--green-700));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.risk-card--plain::after {
  display: none;
}

.process-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  list-style: none;
}

.process-list li {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-900);
}

.process-list p {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.roi-layout {
  display: grid;
  gap: 28px;
}

.roi-main {
  max-width: 680px;
}

.roi-main h2 {
  margin-top: 8px;
}

.roi-main p {
  margin-top: 16px;
}

.roi-numbers {
  display: grid;
  gap: 12px;
}

.roi-numbers article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.roi-numbers span {
  color: var(--ink-500);
  font-weight: 700;
}

.roi-numbers strong {
  display: block;
  margin-top: 8px;
  color: var(--green-700);
  font-family: var(--font-number);
  font-size: 2.25rem;
  line-height: 1;
}

.note {
  margin-top: 18px;
  text-align: center;
}

.contact-layout {
  display: grid;
  gap: 30px;
}

.contact-copy {
  max-width: 520px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink-900);
  padding: 12px 13px;
}

.contact-form p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer__inner {
  display: grid;
  gap: 18px;
}

.site-footer img {
  width: 150px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--green-700);
  font-family: var(--font-number);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-footer p {
  max-width: 850px;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.site-footer small {
  color: var(--ink-500);
  font-family: var(--font-number);
  font-size: 0.76rem;
}

@media (min-width: 700px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .gene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corp-hero__grid,
  .corp-wave__grid,
  .corp-package__grid,
  .corp-problem__grid,
  .corp-roi__grid,
  .pattern-card-layout,
  .pattern-report-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corp-logo-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .corp-icon-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .corp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .step-grid,
  .metric-grid,
  .plan-grid,
  .solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-list li {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .process-list li:last-child {
    border-right: 0;
  }

  .roi-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form__wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 920px) {
  .menu-button {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    align-items: start;
  }

  .split .section-copy {
    align-self: center;
  }

  .section {
    padding: 96px 0;
  }

  .section--lead {
    padding-top: 104px;
  }

  .gene-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .corp-hero {
    padding-top: 84px;
  }

  .corp-hero h1 {
    font-size: 3.4rem;
  }

  .corp-wave h2,
  .corp-package h2,
  .corp-problem h2,
  .corp-features h2,
  .corp-roi h2 {
    font-size: 2.35rem;
  }

  .contact-layout {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }
}

@media (max-width: 699px) {
  .brand img {
    width: 122px;
  }

  .brand span {
    max-width: 108px;
    overflow: hidden;
    white-space: nowrap;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 500px;
    height: auto;
  }

  .hero__inner {
    padding: 64px 0 44px;
  }

  .hero__proof span {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .button {
    width: 100%;
  }

  .brand-hero__photo {
    object-position: 24% center;
  }

  .brand-hero__wash {
    background:
      linear-gradient(180deg, rgba(223, 242, 247, 0.86) 0%, rgba(223, 242, 247, 0.58) 43%, rgba(5, 51, 45, 0.54) 100%),
      linear-gradient(90deg, rgba(223, 242, 247, 0.78), rgba(223, 242, 247, 0.08));
  }

  .brand-hero__inner {
    justify-content: flex-start;
    padding-top: 52px;
    padding-bottom: 30px;
  }

  .brand-hand--top {
    top: 34px;
    right: 20px;
    font-size: 1.25rem;
  }

  .brand-hero h1 {
    max-width: 360px;
    font-size: 2.45rem;
    line-height: 1.14;
  }

  .brand-hero__tagline {
    font-size: 0.98rem;
  }

  .brand-hero__lead {
    display: none;
  }

  .brand-side-note {
    position: static;
    width: fit-content;
    margin-top: 16px;
    color: var(--brand-ink);
  }

  .brand-side-note span {
    writing-mode: horizontal-tb;
  }

  .brand-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 22px;
  }

  .brand-badge {
    width: auto;
    min-height: 84px;
    border-radius: 50%;
    font-size: 0.72rem;
  }

  .brand-badge strong {
    font-size: 0.84rem;
  }

  .brand-hero__actions {
    margin-top: 20px;
  }

  .corp-hero {
    padding-top: 54px;
  }

  .corp-hero h1 {
    font-size: 2.25rem;
  }

  .corp-hero__visual {
    min-height: 360px;
  }

  .corp-hero__photo img {
    width: min(100%, 320px);
  }

  .corp-hero__visual::before {
    left: 50%;
    right: auto;
    width: min(78%, 300px);
    transform: translateX(-50%) rotate(-7deg);
  }

  .corp-hero__visual figcaption {
    right: 16px;
  }

  .corp-hero__phone {
    left: 18px;
    bottom: 60px;
    width: 98px;
  }

  .corp-hero__rail {
    display: none;
  }

  .corp-logo-row {
    margin-top: 18px;
  }

  .corp-wave {
    padding: 72px 0 96px;
  }

  .corp-orbit span {
    width: 72px;
    height: 72px;
    font-size: 0.66rem;
  }

  .corp-orbit__center {
    width: 84px;
    height: 84px;
  }

  .corp-package,
  .corp-problem,
  .corp-features {
    padding: 64px 0;
  }

  .corp-bg-word,
  .corp-features__bg {
    font-size: 3.4rem;
    letter-spacing: 0;
  }

  .corp-answer {
    min-height: 300px;
  }

  .pattern-intro h1 {
    font-size: 2rem;
  }

  .pattern-hero,
  .pattern-hero__inner {
    min-height: 560px;
  }

  .pattern-hero h2 {
    font-size: 2.55rem;
  }

  .pattern-hero--card,
  .pattern-hero--report {
    padding: 56px 0;
  }

  .pattern-ad-card {
    min-height: 560px;
  }

  .pattern-card-copy h2,
  .pattern-report-layout h2 {
    font-size: 2rem;
  }
}

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
