:root {
  --ink: #202625;
  --deep: #164f4b;
  --teal: #00a99d;
  --teal-dark: #008f87;
  --mint: #dff4ee;
  --mint-strong: #7fd9cf;
  --paper: #fbfbf4;
  --cream: #f5f1df;
  --white: #ffffff;
  --coral: #ef6044;
  --aqua: #56bdc8;
  --sun: #f4ca55;
  --muted: #667270;
  --line: #dce7e1;
  --shadow: 0 28px 80px rgba(32, 38, 37, 0.12);
  --soft-shadow: 0 18px 50px rgba(32, 38, 37, 0.08);
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-display: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0;
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatTile {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(0, 169, 157, 0.22);
  }

  50% {
    box-shadow: 0 18px 44px rgba(0, 169, 157, 0.36);
  }
}

@keyframes shimmerLine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 18px max(5vw, calc((100vw - 1160px) / 2));
  color: var(--ink);
  background: rgba(251, 251, 244, 0.94);
  border-bottom: 1px solid rgba(220, 231, 225, 0.78);
  backdrop-filter: blur(18px);
  animation: fadeDown 560ms ease both;
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 76px;
  background: rgba(251, 251, 244, 0.98);
  box-shadow: 0 12px 36px rgba(32, 38, 37, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  line-height: 1.2;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
}

.brand strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 24px);
  font-size: 0.9rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 3px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.header-button:hover,
.header-button:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  min-height: 860px;
  padding: 154px max(5vw, calc((100vw - 1160px) / 2)) 128px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 48%, rgba(217, 244, 239, 0.58) 48%, rgba(230, 246, 233, 0.72) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 132px;
  height: 132px;
  left: 5vw;
  bottom: 82px;
  background: rgba(0, 169, 157, 0.14);
}

.hero::after {
  width: 190px;
  height: 190px;
  right: -54px;
  top: 196px;
  background: rgba(239, 96, 68, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.contact-copy h2,
.snapshot-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.22;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.45rem, 6.05vw, 6.25rem);
  letter-spacing: 0;
}

.hero .eyebrow {
  animation: fadeUp 620ms ease 120ms both;
}

.hero h1 {
  animation: fadeUp 720ms ease 220ms both;
}

.hero-title-line {
  display: inline-block;
  padding: 0 0.08em;
  background: rgba(255, 255, 255, 0.92);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.hero-title-line:first-child {
  color: var(--deep);
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: #34413e;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 2;
  animation: fadeUp 720ms ease 340ms both;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-actions {
  animation: fadeUp 720ms ease 460ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 169, 157, 0.22);
  animation: softPulse 3800ms ease-in-out 1200ms infinite;
}

.button-secondary {
  color: var(--deep);
  border-color: var(--line);
  background: var(--white);
}

.contact-section .button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.88);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 540px;
}

.visual-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main {
  right: 0;
  top: 36px;
  width: min(760px, 58vw);
  height: 430px;
  border-radius: 0;
  animation: fadeUp 760ms ease 380ms both;
}

.visual-photo {
  left: 0;
  bottom: 6px;
  width: min(340px, 28vw);
  height: 250px;
  border: 10px solid var(--paper);
  animation: fadeUp 760ms ease 560ms both;
}

.visual-square {
  position: absolute;
  z-index: 2;
  animation: floatTile 5400ms ease-in-out infinite;
}

.visual-square-one {
  width: 96px;
  height: 96px;
  left: 34px;
  top: 0;
  background: rgba(0, 169, 157, 0.16);
}

.visual-square-two {
  width: 72px;
  height: 72px;
  right: 42px;
  bottom: 18px;
  background: rgba(0, 169, 157, 0.88);
  animation-delay: 900ms;
}

.visual-square-three {
  width: 54px;
  height: 54px;
  right: 230px;
  top: 0;
  background: rgba(239, 96, 68, 0.72);
  animation-delay: 1400ms;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1060px, 86vw);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transform: translateX(-50%);
  animation: fadeUp 760ms ease 680ms both;
}

.hero-strip span {
  position: relative;
  min-height: 82px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--deep);
  font-size: 1.02rem;
  font-weight: 900;
  overflow: hidden;
}

.hero-strip span::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(127, 217, 207, 0.32) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: shimmerLine 3000ms ease-in-out infinite;
}

.hero-strip span:nth-child(2)::before {
  animation-delay: 240ms;
}

.hero-strip span:nth-child(3)::before {
  animation-delay: 480ms;
}

.hero-strip span:nth-child(4)::before {
  animation-delay: 720ms;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  position: relative;
  padding: 136px max(5vw, calc((100vw - 1160px) / 2));
}

.section-head {
  width: min(1160px, 100%);
  margin: 0 auto 58px;
}

.section-head h2,
.contact-copy h2 {
  max-width: 880px;
  font-size: clamp(2.22rem, 3.9vw, 4rem);
  line-height: 1.34;
}

.snapshot {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: end;
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 118px 0 88px;
  background: var(--paper);
}

.snapshot-copy h2 {
  font-size: clamp(1.95rem, 3vw, 3.15rem);
  line-height: 1.42;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.snapshot-item {
  min-height: 178px;
  padding: 26px 20px;
  background: rgba(255, 255, 255, 0.72);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.snapshot-item:hover {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(32, 38, 37, 0.08);
  transform: translateY(-4px);
}

.snapshot-item strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--teal-dark);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
}

.snapshot-item span {
  display: block;
  margin-top: 20px;
  font-weight: 900;
}

.snapshot-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.intro {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.98), rgba(127, 217, 207, 0.8)),
    var(--teal);
}

.intro::before,
.intro::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.15);
}

.intro::before {
  width: 132px;
  height: 132px;
  right: 19vw;
  top: 74px;
}

.intro::after {
  width: 180px;
  height: 180px;
  left: 12vw;
  bottom: 56px;
}

.intro .section-kicker {
  color: var(--white);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px 72px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}

.intro-grid .lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  font-weight: 800;
  line-height: 1.7;
}

.intro-grid blockquote {
  margin: 0;
  padding: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  box-shadow: var(--soft-shadow);
  font-family: var(--font-display);
  font-size: 1.36rem;
  line-height: 1.8;
}

.intro-grid p:last-child {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.strengths {
  background: var(--paper);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.strength-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.strength-card:hover {
  border-color: rgba(0, 169, 157, 0.3);
  box-shadow: var(--soft-shadow);
  transform: translateY(-6px);
}

.strength-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.strength-card h3 {
  margin: 72px 0 16px;
  font-size: 1.38rem;
  line-height: 1.5;
}

.strength-card p {
  margin: 0;
  color: var(--muted);
}

.service-band {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--mint) 100%);
  color: var(--ink);
}

.service-band::before {
  position: absolute;
  right: 8vw;
  top: 110px;
  width: 160px;
  height: 160px;
  content: "";
  background: rgba(0, 169, 157, 0.15);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 360px;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(32, 38, 37, 0.05);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: var(--soft-shadow);
  transform: translateY(-6px);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 169, 157, 0.22);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.service-card h3 {
  margin: 84px 0 14px;
  font-size: 1.38rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1160px, 100%);
  margin: 34px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(32, 38, 37, 0.12);
}

.service-note p {
  max-width: 720px;
  margin: 0;
  color: #43504d;
  font-weight: 700;
}

.service-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.service-note a:hover,
.service-note a:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.process-section {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.64fr);
  gap: 46px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 266px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-list li:hover {
  border-color: rgba(239, 96, 68, 0.28);
  box-shadow: var(--soft-shadow);
  transform: translateY(-5px);
}

.process-list li::after {
  position: absolute;
  right: 18px;
  bottom: -22px;
  color: rgba(0, 169, 157, 0.09);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 800;
  line-height: 1;
}

.process-list span {
  display: inline-block;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-list h3 {
  position: relative;
  z-index: 1;
  margin: 56px 0 12px;
  font-size: 1.38rem;
}

.process-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.process-aside {
  position: sticky;
  top: 116px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--deep), var(--teal-dark));
  box-shadow: var(--soft-shadow);
}

.process-aside p {
  margin: 0 0 24px;
  color: var(--sun);
  font-weight: 900;
}

.process-aside ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-aside li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

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

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

.products-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}

.product-copy p {
  margin: 0 0 34px;
  color: #3d4a47;
  font-size: 1.08rem;
  font-weight: 700;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 38px;
}

.category-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--deep);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-grid span:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

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

.profile-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.profile-item span {
  color: var(--teal-dark);
  font-weight: 900;
}

.profile-item strong {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.partner-panel {
  padding: 38px;
  border-radius: 8px;
  background: var(--paper);
}

.partner-panel p {
  margin: 0 0 22px;
  color: var(--teal-dark);
  font-weight: 900;
}

.partner-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-panel li {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.partner-panel li:hover {
  border-color: rgba(0, 169, 157, 0.32);
  transform: translateX(3px);
}

.results-band {
  background:
    linear-gradient(180deg, var(--paper), var(--mint));
}

.results-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.results-note {
  width: min(1160px, 100%);
  margin: 30px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.growth-card {
  padding: 38px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--teal), var(--aqua)),
    var(--teal);
  box-shadow: var(--soft-shadow);
}

.growth-label {
  margin: 0 0 30px;
  font-size: 0.9rem;
  font-weight: 900;
}

.growth-card strong {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 1;
}

.growth-card span {
  display: block;
  margin-top: 20px;
  font-weight: 800;
}

.sales-chart {
  display: grid;
  gap: 26px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sales-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}

.sales-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.sales-meta strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
  line-height: 1.4;
}

.bar-track {
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  background: #dce9e2;
}

.bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  transform-origin: left center;
  animation: barGrow 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: width 900ms ease;
}

.bar-third {
  width: 61.5%;
  background: var(--aqua);
  animation-delay: 160ms;
}

.bar-fourth {
  width: 100%;
  background: var(--coral);
  animation-delay: 320ms;
}

.partner-cta {
  background: var(--paper);
}

.partner-routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.partner-routes article {
  display: flex;
  min-height: 328px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-routes article:hover {
  border-color: rgba(0, 169, 157, 0.28);
  box-shadow: var(--soft-shadow);
  transform: translateY(-6px);
}

.partner-routes h3 {
  margin: 0 0 18px;
  font-size: 1.34rem;
}

.partner-routes p {
  margin: 0;
  color: var(--muted);
}

.partner-routes a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.partner-routes a:hover,
.partner-routes a:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(0, 169, 157, 0.28);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 26px;
  color: var(--ink);
  font-weight: 900;
  transition: color 180ms ease;
}

.faq-list summary:hover {
  color: var(--teal-dark);
}

.faq-list p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 46px;
  align-items: end;
  width: 100%;
  margin: 0;
  padding: 110px max(5vw, calc((100vw - 1160px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 79, 75, 0.96), rgba(0, 169, 157, 0.88)),
    var(--deep);
}

.contact-section .section-kicker {
  color: var(--sun);
}

.contact-copy p:last-child {
  max-width: 740px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-actions {
  justify-content: flex-end;
  min-width: 290px;
}

.contact-page {
  padding-top: 92px;
}

.contact-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 54px;
}

.contact-hero h1 {
  max-width: 850px;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.22;
  font-weight: 800;
}

.contact-hero p:last-child {
  max-width: 740px;
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, rgba(223, 244, 238, 0.65), rgba(251, 251, 244, 0));
}

.contact-form-copy h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.36;
}

.contact-form-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-form-copy a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label,
.contact-form .form-grid {
  display: grid;
  gap: 9px;
}

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

.contact-form span {
  color: var(--deep);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  letter-spacing: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.14);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-submit-row .button {
  border: 0;
  cursor: pointer;
}

.form-notice {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 22px;
  font-weight: 700;
}

.form-notice h2,
.form-notice p,
.form-notice ul {
  margin: 0;
}

.form-notice ul {
  padding-left: 1.2em;
}

.form-notice-success {
  border: 1px solid rgba(0, 169, 157, 0.3);
  background: rgba(223, 244, 238, 0.9);
}

.form-notice-error {
  border: 1px solid rgba(239, 96, 68, 0.3);
  color: #7c2d21;
  background: rgba(239, 96, 68, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px max(5vw, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-brand {
  color: var(--ink);
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  transform: translateY(0);
  opacity: 1;
  transition: transform 520ms ease, opacity 520ms ease;
}

.reveal.is-visible,
.motion-item.is-visible {
  transform: translateY(0);
  opacity: 1;
  animation: fadeUp 680ms ease var(--motion-delay, 0ms) both;
}

.motion-item {
  will-change: transform, opacity;
}

.motion-ready .sales-chart .bar {
  animation-play-state: paused;
}

.motion-ready .sales-chart.is-visible .bar {
  animation-play-state: running;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 5vw;
    right: 5vw;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: menuReveal 180ms ease both;
  }

  .site-nav a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-block;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 132px;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .visual-main {
    width: min(760px, 86vw);
    height: 360px;
  }

  .visual-photo {
    width: min(300px, 38vw);
    height: 210px;
  }

  .snapshot,
  .intro-grid,
  .products-layout,
  .process-layout,
  .results-layout,
  .contact-section,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

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

  .strengths-grid,
  .partner-routes {
    grid-template-columns: 1fr;
  }

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

  .process-aside {
    position: static;
    order: -1;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 72px;
    left: 18px;
    right: 18px;
  }

  .hero {
    gap: 30px;
    padding: 112px 18px 118px;
    background:
      linear-gradient(180deg, var(--paper) 0%, var(--paper) 48%, rgba(217, 244, 239, 0.72) 48%, rgba(230, 246, 233, 0.72) 100%);
  }

  .hero::before {
    width: 92px;
    height: 92px;
    left: 18px;
    bottom: 54px;
  }

  .hero::after {
    width: 112px;
    height: 112px;
    right: -32px;
    top: 160px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11.8vw, 3.85rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions,
  .form-submit-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .contact-page {
    padding-top: 72px;
  }

  .contact-hero {
    width: calc(100% - 36px);
    padding: 58px 0 28px;
  }

  .contact-form-section {
    gap: 30px;
    padding-top: 44px;
    padding-bottom: 76px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .visual-main {
    right: -32px;
    top: 24px;
    width: calc(100% + 30px);
    height: 270px;
  }

  .visual-photo {
    left: 0;
    bottom: 0;
    width: 48%;
    height: 142px;
    border-width: 6px;
  }

  .visual-square-one {
    width: 66px;
    height: 66px;
    left: 0;
  }

  .visual-square-two {
    width: 58px;
    height: 58px;
    right: 10px;
  }

  .visual-square-three {
    width: 42px;
    height: 42px;
    right: 118px;
  }

  .hero-strip {
    bottom: 28px;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 36px);
  }

  .hero-strip span {
    min-height: 64px;
    font-size: 0.88rem;
  }

  .hero-strip span:nth-child(2) {
    border-right: 0;
  }

  .hero-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 88px 18px;
  }

  .snapshot {
    width: calc(100% - 36px);
    gap: 30px;
    padding: 74px 0 54px;
  }

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

  .snapshot-item {
    min-height: 138px;
    padding: 18px 14px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 8.6vw, 2.7rem);
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-grid blockquote {
    padding: 24px;
    font-size: 1.18rem;
  }

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

  .service-card {
    min-height: 260px;
    padding: 26px;
  }

  .service-card h3 {
    margin-top: 52px;
  }

  .service-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .partner-panel {
    padding: 24px;
  }

  .partner-panel ul {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 220px;
    padding: 24px;
  }

  .process-list h3 {
    margin-top: 42px;
  }

  .process-aside,
  .partner-routes article {
    padding: 24px;
  }

  .results-layout {
    gap: 22px;
  }

  .growth-card,
  .sales-chart {
    padding: 24px;
  }

  .sales-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-section {
    padding: 70px 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 18px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-title-line {
    padding: 0 0.04em;
  }
}

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

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

  .motion-ready .sales-chart .bar {
    animation-play-state: running;
  }
}
