:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --blue: #0071e3;
  --blue-dark: #005bb5;
  --green: #1f4b3a;
  --gold: #a87528;
  --red: #b64d3f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@property --glow-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 68%, transparent 100%);
  animation: grid-drift 18s linear infinite;
}

@keyframes grid-drift {
  to {
    background-position: 44px 44px;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #67b7ff);
  transform: scaleX(0);
  transform-origin: left center;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: page-progress linear both;
    animation-timeline: scroll();
  }
}

@keyframes page-progress {
  to {
    transform: scaleX(1);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Georgia, serif;
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.12;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 28px);
  color: #333336;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 8vw, 94px) 0 clamp(46px, 7vw, 82px);
}

.hero-text,
.hero-photo {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  animation: hero-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  animation: hero-rise 900ms 90ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.plain-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  animation: hero-rise 900ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  animation: hero-rise 900ms 230ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.32), 0 12px 28px rgba(0, 113, 227, 0.12);
}

.button.main {
  background: var(--blue);
  color: white;
  box-shadow: none;
}

.button.main:hover {
  background: var(--blue-dark);
  color: white;
}

.button.main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.26) 44%, transparent 68%);
  transform: translateX(-120%);
  content: "";
}

.button.main:hover::after {
  animation: button-sheen 850ms ease;
}

@keyframes button-sheen {
  to {
    transform: translateX(120%);
  }
}

.hero-photo {
  position: relative;
  margin: 0;
  perspective: 1200px;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  object-fit: cover;
  object-position: 72% 45%;
  box-shadow: var(--shadow);
  animation: photo-enter 1050ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both, photo-float 8s 1.4s ease-in-out infinite;
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.hero-photo:hover img {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

@keyframes photo-enter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes photo-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.hero-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.hero-chip-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-chip-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 750;
  animation: chip-float 6s ease-in-out infinite;
}

.hero-chip-cloud span:nth-child(1) {
  top: 12%;
  left: -7%;
}

.hero-chip-cloud span:nth-child(2) {
  right: -8%;
  bottom: 26%;
  animation-delay: 0.7s;
}

.hero-chip-cloud span:nth-child(3) {
  left: 10%;
  bottom: 9%;
  animation-delay: 1.4s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.signal-strip {
  overflow: hidden;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(22px, 4vw, 42px);
  border-block: 1px solid rgba(210, 210, 215, 0.72);
  color: var(--muted);
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 14px 0;
  white-space: nowrap;
  animation: signal-marquee 28s linear infinite;
}

.signal-track span {
  position: relative;
  font-size: 13px;
  font-weight: 800;
}

.signal-track span::after {
  position: absolute;
  right: -20px;
  color: var(--blue);
  content: "/";
  opacity: 0.45;
}

@keyframes signal-marquee {
  to {
    transform: translateX(-50%);
  }
}

.profile-section {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(245, 245, 247, 0.95));
}

.profile-intro,
.profile-panels,
.profile-visual {
  width: min(1060px, 100%);
  margin-inline: auto;
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.profile-intro .section-title {
  margin-bottom: 0;
  min-width: 0;
}

.profile-body {
  padding-top: 3px;
  min-width: 0;
}

.profile-body p {
  margin: 0;
  color: #333336;
  font-size: 16px;
  font-weight: 560;
}

.profile-body p + p {
  margin-top: 16px;
}

.profile-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile-panels article {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.72);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.profile-panels article::after {
  position: absolute;
  inset: auto -24px -48px 30%;
  height: 110px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.1);
  filter: blur(28px);
  content: "";
}

.profile-panels article:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.84), 0 18px 44px rgba(0, 0, 0, 0.08);
}

.profile-panels span,
.profile-facts span {
  display: inline-flex;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.profile-panels h3 {
  margin-top: 16px;
  font-size: 20px;
}

.profile-panels p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.profile-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.profile-card,
.profile-facts,
.profile-quote {
  border-radius: 28px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.72), 0 22px 62px rgba(0, 0, 0, 0.07);
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.48fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  object-fit: cover;
  object-position: 72% 45%;
}

.profile-card h3 {
  font-size: clamp(30px, 4vw, 46px);
}

.profile-card p:last-child {
  margin-bottom: 0;
}

.profile-facts {
  display: grid;
  gap: 0;
  padding: 8px;
}

.profile-facts div {
  padding: 16px 18px;
  border-radius: 20px;
}

.profile-facts div + div {
  border-top: 1px solid rgba(210, 210, 215, 0.72);
}

.profile-facts strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.profile-quote {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
  background: #1d1d1f;
  color: white;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.45;
}

.intro-strip {
  position: relative;
  overflow: hidden;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 50px);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.72);
}

.intro-strip::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(0, 113, 227, 0.08), transparent);
  transform: translateX(-100%);
  content: "";
  animation: quiet-scan 8s ease-in-out infinite;
}

@keyframes quiet-scan {
  0%,
  40% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

.intro-strip p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.intro-strip h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.24;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(20px, 4vw, 54px);
}

section[id] {
  scroll-margin-top: 82px;
}

.section-title,
.simple-grid,
.support-lines,
.compare,
.knowhow,
.timeline,
.plans,
.links {
  width: min(1060px, 100%);
  margin-inline: auto;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.center {
  max-width: 720px;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

p {
  color: var(--muted);
}

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

.simple-grid article,
.compare article,
.timeline article,
.plan,
.links a {
  transform-style: preserve-3d;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.simple-grid article:hover,
.compare article:hover,
.timeline article:hover,
.plan:hover,
.links a:hover,
.support-lines article:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.84), 0 18px 44px rgba(0, 0, 0, 0.08);
}

.simple-grid article {
  padding: 26px;
}

.simple-grid p,
.support-lines p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.support-section,
.timeline-section {
  background: var(--surface-soft);
}

.support-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}

.support-lines article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(210, 210, 215, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.support-lines article::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) 0%, rgba(0, 113, 227, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
  content: "";
}

.support-lines article:hover {
  --glow-x: 100%;
}

.support-lines article:hover::before {
  opacity: 1;
  animation: card-light 900ms ease;
}

.support-lines article > * {
  position: relative;
  z-index: 1;
}

@keyframes card-light {
  from {
    --glow-x: 0%;
  }
  to {
    --glow-x: 100%;
  }
}

.support-lines span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.market-section,
.plans-section,
.links-section {
  background: var(--bg);
}

.experience-section {
  background: #fff;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.experience p {
  max-width: 620px;
}

.motion-board {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #1d1d1f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(103, 183, 255, 0.28), transparent);
  filter: blur(10px);
  animation: board-scan 4.8s ease-in-out infinite;
}

@keyframes board-scan {
  0%,
  20% {
    transform: translateX(0);
  }
  72%,
  100% {
    transform: translateX(560%);
  }
}

.motion-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  animation: board-card 6s ease-in-out infinite;
  transform: translateZ(20px);
}

.motion-card:nth-child(3) {
  animation-delay: 0.25s;
}

.motion-card:nth-child(4) {
  animation-delay: 0.5s;
}

.motion-card:nth-child(5) {
  animation-delay: 0.75s;
}

.motion-card:nth-child(6) {
  animation-delay: 1s;
}

.motion-card.active {
  background: rgba(0, 113, 227, 0.28);
  color: white;
}

@keyframes board-card {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

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

.compare article {
  padding: clamp(24px, 3vw, 34px);
}

ul {
  margin: 18px 0;
  padding-left: 1.2em;
}

li + li {
  margin-top: 8px;
}

.result {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.knowhow {
  margin-top: 16px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  background: #1d1d1f;
  color: white;
}

.knowhow p,
.knowhow li {
  color: rgba(255, 255, 255, 0.78);
}

.knowhow .message {
  margin: 24px 0 0;
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.caption,
.small-copy {
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  padding: 24px;
}

.small-copy {
  width: min(1060px, 100%);
  margin: 18px auto 0;
}

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

.plan {
  padding: clamp(26px, 4vw, 38px);
}

.plan-highlight {
  background: #fffaf0;
  box-shadow: inset 0 0 0 1px rgba(168, 117, 40, 0.22);
}

.tag {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #f5e8d0;
  color: #7a4b13;
  font-size: 13px;
  font-weight: 750;
}

.price {
  display: grid;
  margin: 20px 0 0;
}

.price small {
  color: var(--muted);
  font-weight: 650;
}

.price strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1;
}

.price span,
.sub {
  color: var(--muted);
}

.off {
  color: var(--red);
  font-weight: 800;
}

.campaign {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 24px;
  width: min(1060px, calc(100% - 40px));
  margin: clamp(30px, 6vw, 72px) auto;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 30px;
  background: #1d1d1f;
  color: white;
}

.campaign::before {
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, transparent 20%, rgba(103, 183, 255, 0.2), transparent 46%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: campaign-sweep 7s ease-in-out infinite;
  content: "";
}

.campaign > * {
  position: relative;
  z-index: 1;
}

@keyframes campaign-sweep {
  0%,
  35% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

.campaign p {
  color: rgba(255, 255, 255, 0.78);
}

.campaign h2 {
  max-width: 720px;
}

.campaign .label {
  color: rgba(255, 255, 255, 0.64);
}

.campaign-price {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.campaign-price p,
.campaign-price small,
.campaign-price span {
  color: rgba(255, 255, 255, 0.76);
}

.campaign-price strong {
  display: block;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1;
}

.campaign-price em {
  display: block;
  margin-top: 12px;
  color: #ffd89b;
  font-style: normal;
  font-weight: 800;
}

.links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.links a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 26px;
}

.links span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.links strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  line-height: 1.35;
}

.links small {
  align-self: end;
  color: var(--blue);
  font-weight: 700;
}

@supports (animation-timeline: view()) {
  .intro-strip,
  .section-title,
  .profile-intro,
  .profile-panels article,
  .profile-visual,
  .simple-grid article,
  .support-lines article,
  .experience,
  .compare article,
  .knowhow,
  .timeline article,
  .plan,
  .campaign,
  .links a {
    animation: reveal-up both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0.35;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 54px);
  background: #1d1d1f;
  color: white;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
  }

  .nav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--ink);
  }

  .nav-toggle span + span {
    margin-top: -12px;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.18s ease;
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .profile-intro,
  .profile-panels,
  .profile-visual,
  .simple-grid,
  .compare,
  .support-lines,
  .experience,
  .timeline,
  .plans,
  .campaign,
  .links {
    grid-template-columns: 1fr;
  }

  .hero-chip-cloud span {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    width: min(100% - 32px, 1120px);
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .section-title h2,
  .lead,
  .plain-note,
  .profile-body p {
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .price strong {
    font-size: 46px;
  }

  .site-footer {
    display: grid;
  }
}
