:root {
  --navy: #0b2744;
  --teal: #078da8;
  --teal-dark: #08789e;
  --cyan: #10a5b8;
  --gold: #dfa92f;
  --gold-light: #f1cf76;
  --line: #cae0e9;
  --soft-line: #e2edf2;
  --muted: #526b7b;
  --shell: 940px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(calc(100% - 32px), var(--shell)); margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; }

/* Header */
.site-header { padding: 19px 0 16px; background: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 48px; padding: 0 20px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 218px; height: auto; aspect-ratio: auto; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-header {
  height: 39px;
  padding: 0 18px;
  border: 1px solid #8aa7b6;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .03em;
  gap: 8px;
}
.btn-header-secondary { min-width: 151px; }
.btn-header-primary {
  min-width: 130px;
  color: #fff;
  border-color: #0787a2;
  background: linear-gradient(180deg, #0b97ad 0%, #087f9f 100%);
}
.header-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 13px 0 24px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 42px;
  right: calc(50% - 560px);
  width: 600px;
  height: 500px;
  border-radius: 54% 46% 54% 46% / 45% 53% 47% 55%;
  background: linear-gradient(160deg, rgba(236,249,252,.96), rgba(239,247,251,.5));
  transform: rotate(-8deg);
}
.hero-glow { display: none; }
.hero-confetti,
.hero-confetti-bottom {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='260' viewBox='0 0 360 260'%3E%3Cg opacity='.92'%3E%3Crect x='26' y='25' width='7' height='7' rx='1' transform='rotate(45 29.5 28.5)' fill='%230A89AD'/%3E%3Crect x='104' y='64' width='6' height='6' rx='1' transform='rotate(45 107 67)' fill='%23E2B443'/%3E%3Crect x='190' y='20' width='7' height='7' rx='1' transform='rotate(45 193.5 23.5)' fill='%231DAFC0'/%3E%3Crect x='282' y='55' width='6' height='6' rx='1' transform='rotate(45 285 58)' fill='%230879A3'/%3E%3Crect x='329' y='128' width='7' height='7' rx='1' transform='rotate(45 332.5 131.5)' fill='%23E2B443'/%3E%3Crect x='62' y='170' width='6' height='6' rx='1' transform='rotate(45 65 173)' fill='%231DAFC0'/%3E%3Crect x='154' y='220' width='7' height='7' rx='1' transform='rotate(45 157.5 223.5)' fill='%230A89AD'/%3E%3Crect x='245' y='168' width='6' height='6' rx='1' transform='rotate(45 248 171)' fill='%23E2B443'/%3E%3Cpath d='M224 92h22M235 81v22' stroke='%23E2B443' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M313 226h14M320 219v14' stroke='%231DAFC0' stroke-width='2.5' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 260px;
  background-position: center top;
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 76%, transparent 98%);
  mask-image: linear-gradient(to bottom, #000 0 76%, transparent 98%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 454px 486px;
  align-items: start;
  min-height: 608px;
  position: relative;
  z-index: 1;
}
.hero-copy { padding: 20px 0 0 26px; position: relative; z-index: 2; }
.campaign-ribbon {
  position: relative;
  width: 448px;
  height: 53px;
  margin: 0 0 22px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(100deg, #087b9e, #0a9fb2 55%, #08799e);
  box-shadow: 0 8px 20px rgba(5,109,137,.12);
}
.campaign-ribbon::before,
.campaign-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 36px;
  height: 53px;
  background: inherit;
}
.campaign-ribbon::before { left: -25px; clip-path: polygon(100% 0, 0 50%, 100% 100%, 73% 50%); }
.campaign-ribbon::after { right: -25px; clip-path: polygon(0 0, 100% 50%, 0 100%, 27% 50%); }
.hero-kicker { margin: 0 0 17px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.hero-title {
  margin: 0;
  font-size: 72px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.hero-title span { color: var(--teal); }
.hero-lead {
  width: 442px;
  margin: 25px 0 20px;
  padding-bottom: 7px;
  border-bottom: 2px solid #edc35c;
  font-size: 14px;
  line-height: 1.82;
  font-weight: 700;
}

.hero-lead-accent {
  color: var(--teal);
  font-size: 15px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 510px;
  min-height: 510px;
  margin-top: 4px;
  margin-left: -10px;
  transform: translate(8px, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop-mockup {
  position: relative;
  width: 492px;
  margin-top: 68px;
  filter: drop-shadow(0 20px 18px rgba(15, 49, 65, .17));
}
.laptop-lid {
  position: relative;
  width: 94%;
  margin: 0 auto;
  padding: 10px 10px 12px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(155deg, #11171c 0%, #05080a 55%, #192126 100%);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 4px 8px rgba(6,19,26,.16);
}
.laptop-camera {
  position: absolute;
  z-index: 3;
  top: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #38434a;
  box-shadow: 0 0 0 1px #020405;
}
.laptop-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2048 / 1120;
  border-radius: 4px 4px 2px 2px;
  background: #edf3f7;
}
.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.laptop-base {
  position: relative;
  z-index: 2;
  width: 104%;
  height: 18px;
  margin: -1px auto 0;
  transform: translateX(-2%);
  border-radius: 1px 1px 14px 14px;
  background: linear-gradient(180deg, #f6f7f8 0%, #c7ccd0 44%, #8d969c 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 3px 4px rgba(31,50,60,.22);
}
.laptop-base::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  width: 84px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg, #a5adb2, #e6e9eb);
}
.laptop-base span {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -3px;
  height: 4px;
  border-radius: 0 0 50% 50%;
  background: #7e878c;
  opacity: .58;
}
.laptop-floor-shadow {
  position: absolute;
  z-index: 0;
  left: 5%;
  right: 5%;
  bottom: -13px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(19,56,72,.26), rgba(19,56,72,0) 72%);
  filter: blur(4px);
}
.now-badge {
  position: absolute;
  z-index: 5;
  top: 31px;
  right: 4px;
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 7px solid rgba(237,249,252,.96);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #10a9b6 0%, #0875a6 100%);
  box-shadow: 0 13px 28px rgba(7,91,126,.24), inset 0 0 0 2px var(--gold);
}
.now-badge::before,
.now-badge::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 2px;
  height: 13px;
  border-radius: 2px;
  background: rgba(255,255,255,.92);
}
.now-badge::before { left: 41px; transform: rotate(-24deg); }
.now-badge::after { right: 41px; transform: rotate(24deg); }
.now-badge span {
  padding-top: 6px;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
}

/* Limited offer */
.limited-block { width: 390px; margin: 0 0 0 7px; }
.limited-row {
  position: relative;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.limited-row::before,
.limited-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 108px;
  background: url("/camlp/assets/laurel.svg") center / contain no-repeat;
}
.limited-row::before { left: -2px; }
.limited-row::after { right: -2px; transform: scaleX(-1); }
.limited-side { font-size: 35px; line-height: .87; font-weight: 900; }
.limited-number {
  font-size: 101px;
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.06em;
  background: linear-gradient(180deg, #f7d681 0%, #d9a129 56%, #f3cd6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.limited-main { font-size: 37px; line-height: 1; font-weight: 900; letter-spacing: -.02em; }
.limited-banner {
  position: relative;
  width: 300px;
  height: 38px;
  margin: -2px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #0d93aa, #087a9e);
}
.limited-banner::before,
.limited-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25px;
  height: 38px;
  background: inherit;
}
.limited-banner::before { left: -18px; clip-path: polygon(100% 0, 0 50%, 100% 100%, 74% 50%); }
.limited-banner::after { right: -18px; clip-path: polygon(0 0, 100% 50%, 0 100%, 26% 50%); }

/* Campaign cards */
.offer-area { position: relative; z-index: 2; max-width: 920px; margin-top: -7px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer-card {
  position: relative;
  min-height: 398px;
  padding: 38px 18px 20px;
  overflow: hidden;
  text-align: center;
  border: 2px solid #f0d58c;
  border-radius: 13px;
  background:
    radial-gradient(circle at 78% 20%, #0d9ab4 0 2px, transparent 2.5px),
    radial-gradient(circle at 64% 33%, #e4b542 0 2.2px, transparent 2.7px),
    radial-gradient(circle at 26% 72%, #10a7bb 0 2px, transparent 2.5px),
    #fff;
  box-shadow: 0 8px 18px rgba(13,57,82,.06);
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/camlp/assets/card-confetti.svg") center / 100% 100% no-repeat;
  pointer-events: none;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card:nth-child(2) { background-position: 92% 16%, 75% 56%, 18% 78%; }
.offer-card:nth-child(3) { background-position: 80% 18%, 28% 18%, 72% 62%; }
.offer-tag {
  position: absolute;
  top: 16px;
  left: -36px;
  width: 124px;
  height: 31px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .05em;
  background: linear-gradient(180deg, #0e98ad, #087b9f);
}
.offer-icon { width: 62px; height: 62px; margin: 4px auto 8px; color: var(--teal); }
.offer-icon svg { width: 62px; height: 62px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.offer-card h2 { margin: 0 0 10px; font-size: 27px; line-height: 1.35; font-weight: 800; }
.offer-value { margin: 0; color: var(--teal); line-height: .95; font-weight: 900; }
.offer-value strong { font-size: 142px; letter-spacing: -.06em; }
.offer-value > span { margin-left: 4px; font-size: 34px; font-weight: 900; }
.offer-value-split { display: flex; align-items: flex-end; justify-content: center; gap: 7px; }
.offer-value-split > span { display: flex; flex-direction: column; align-items: flex-start; padding-bottom: 11px; }
.offer-value-split small { font-size: 26px; line-height: 1.1; font-weight: 800; }
.offer-value-split b { padding-bottom: 3px; border-bottom: 5px solid #e4b83e; font-size: 53px; line-height: 1; font-weight: 900; }
.offer-note { margin: 15px 0 0; color: #3d5362; font-size: 12px; line-height: 1.6; font-weight: 600; }
.offer-card:first-child .offer-value { position: relative; z-index: 1; }
.offer-card:first-child .offer-value::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 105px;
  transform: translate(-50%, -47%);
  background: repeating-conic-gradient(from -4deg, #e0aa2e 0deg 1deg, transparent 1deg 15deg);
  -webkit-mask: radial-gradient(circle, transparent 0 47%, #000 48% 100%);
  mask: radial-gradient(circle, transparent 0 47%, #000 48% 100%);
  opacity: .72;
}
.campaign-period {
  min-height: 64px;
  margin-top: 14px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid #b9d8e5;
  border-radius: 7px;
  background: #fff;
}
.campaign-period svg,
.bottom-cta-period svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.campaign-period p,
.bottom-cta-period { margin: 0; font-size: 15px; font-weight: 700; }
.campaign-period strong,
.bottom-cta-period strong { color: #118fb0; font-size: 19px; font-weight: 900; }
.first-cta { padding-top: 24px; text-align: center; }
.btn-cta {
  position: relative;
  width: 470px;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #0d96ae 0%, #0877a2 100%);
  box-shadow: 0 13px 24px rgba(7,113,155,.23);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  justify-content: center;
}
.cta-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  line-height: 1;
  white-space: nowrap;
}
.btn-cta .cta-icon { width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.btn-cta .cta-chevron {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}


/* INTERVIA overview */
.section-about { padding-top: 27px; }
.section-about > .wrap { max-width: 920px; }
.about-box {
  position: relative;
  overflow: hidden;
  padding: 31px 46px 29px;
  text-align: center;
  border: 1px solid #cfe4ec;
  border-radius: 10px;
  background:
    radial-gradient(circle at 6% 18%, rgba(12,157,181,.08) 0 4px, transparent 4.5px),
    radial-gradient(circle at 94% 82%, rgba(223,169,47,.10) 0 4px, transparent 4.5px),
    linear-gradient(180deg, #f9fdfe 0%, #f1f9fc 100%);
}
.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 118px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #16a8b9, #087fa3);
}
.about-label {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: .10em;
}
.about-box .section-title { margin-bottom: 12px; font-size: 29px; }
.about-lead {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 700;
}
.about-lead strong { color: var(--teal); font-weight: 900; }
.about-description {
  max-width: 760px;
  margin: 0 auto;
  color: #405e71;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 600;
}

.about-flow {
  display: grid;
  grid-template-columns: 1fr 14px 1fr 14px 1fr 14px 1fr;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
}
.about-step {
  min-height: 58px;
  padding: 8px 8px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #c6e0e8;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 3px 10px rgba(20,70,90,.035);
}
.about-step b {
  margin-bottom: 2px;
  color: #1aa2b5;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}
.about-step span {
  color: #0b5975;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  white-space: nowrap;
}
.about-flow i {
  width: 9px;
  height: 9px;
  border-top: 2px solid #d6a431;
  border-right: 2px solid #d6a431;
  transform: rotate(45deg);
  justify-self: center;
}

/* Shared section styling */
.section { padding-top: 30px; }
.section > .wrap { max-width: 920px; }
.section-title { margin: 0 0 14px; text-align: center; font-size: 27px; line-height: 1.4; font-weight: 900; letter-spacing: .01em; }
.section-reasons { padding-top: 30px; }
.reason-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.reason-card {
  min-height: 340px;
  padding: 19px 9px 15px;
  text-align: center;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(20,58,78,.03);
}
.reason-image { height: 112px; margin-bottom: 3px; display: flex; align-items: center; justify-content: center; }
.reason-image img { width: 130px; height: 110px; object-fit: contain; }
.reason-card h3 { min-height: 56px; margin: 0 0 8px; font-size: 16px; line-height: 1.5; font-weight: 800; }
.reason-card h3 span { color: var(--teal); }
.reason-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; font-weight: 600; }

.section-recommend { padding-top: 31px; }
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.recommend-card {
  min-height: 348px;
  padding: 16px 14px 14px;
  text-align: center;
  border: 1px solid #dbe9ef;
  border-radius: 8px;
  background: #fff;
}
.recommend-card h3 { min-height: 55px; margin: 0 0 8px; color: var(--teal); font-size: 18px; line-height: 1.48; font-weight: 800; }
.recommend-card img { display: block; width: min(100%, 260px); height: 190px; margin: 8px auto 12px; object-fit: contain; object-position: center center; background: transparent; }
.recommend-card p { margin: 0; font-size: 14px; line-height: 1.7; font-weight: 700; }

.section-voices { padding-top: 31px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.voice-card {
  min-height: 210px;
  padding: 13px 13px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid #dbe9ef;
  border-radius: 8px;
  background: #fff;
}
.voice-card img { display: block; width: 108px; height: 108px; object-fit: contain; object-position: center center; background: transparent; }
.voice-text h3 { margin: 2px 0 7px; color: var(--teal); font-size: 14px; line-height: 1.5; font-weight: 800; }
.voice-text p { margin: 0 0 7px; color: var(--muted); font-size: 11px; line-height: 1.6; font-weight: 600; }
.voice-text small { display: block; color: #314c60; font-size: 11px; line-height: 1.5; font-weight: 700; }

/* Bottom CTA */
.section-bottom-cta { padding: 21px 0 10px; }
.bottom-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 28px 75px 20px;
  text-align: center;
  border: 2px solid #b8d8e4;
  border-radius: 10px;
  background: #f7fcfe;
}
.bottom-cta-box h2 { position: relative; z-index: 1; margin: 0 0 4px; font-size: 31px; line-height: 1.25; font-weight: 900; }
.bottom-cta-box h2 strong { color: var(--teal); font-size: 64px; line-height: 1; vertical-align: -5px; letter-spacing: -.05em; }
.bottom-cta-box h2 span { color: var(--teal); }
.bottom-cta-lead { position: relative; z-index: 1; margin: 0 0 8px; font-size: 14px; font-weight: 700; }
.bottom-cta-period { position: relative; z-index: 1; margin: 0 0 12px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.btn-cta-bottom { position: relative; z-index: 1; width: 500px; min-height: 54px; }
.bottom-note { position: relative; z-index: 1; margin: 8px 0 0; color: #607988; font-size: 10px; line-height: 1.55; }
.laurel {
  position: absolute;
  top: 48px;
  width: 94px;
  height: 126px;
  background: url("/camlp/assets/laurel-wide.svg") center / contain no-repeat;
}
.laurel-left { left: 20px; }
.laurel-right { right: 20px; transform: scaleX(-1); }
.hero-confetti-bottom { z-index: 0; opacity: .75; mask-image: none; }

/* Footer */
.site-footer { padding: 5px 0 13px; }
.footer-inner { min-height: 45px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand img { width: 168px; height: auto; aspect-ratio: auto; object-fit: contain; }
.footer-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 15px; color: #536c7d; font-size: 10px; font-weight: 600; }

@media (max-width: 980px) and (min-width: 721px) {
  .wrap { width: min(calc(100% - 28px), 900px); }
  .hero-inner { grid-template-columns: 45% 55%; min-height: 522px; }
  .hero-copy { padding-left: 12px; }
  .campaign-ribbon { width: calc(100% - 24px); height: 48px; margin-left: 8px; font-size: 15px; }
  .campaign-ribbon::before, .campaign-ribbon::after { height: 48px; }
  .hero-kicker { font-size: 12.5px; white-space: normal; }
  .hero-title { font-size: clamp(44px, 6.1vw, 60px); }
  .hero-lead { width: 100%; font-size: 12.5px; }
  .hero-lead-accent { font-size: 13px; }
  .limited-block { width: 100%; max-width: 345px; }
  .limited-row { height: 92px; }
  .limited-row::before, .limited-row::after { width: 60px; height: 94px; }
  .limited-side { font-size: 30px; }
  .limited-number { font-size: 88px; }
  .limited-main { font-size: 32px; }
  .limited-banner { width: 270px; height: 35px; font-size: 13px; }
  .limited-banner::before, .limited-banner::after { height: 35px; }
  .hero-visual { width: 100%; min-height: 430px; margin-left: -3px; transform: translateY(4px); }
  .laptop-mockup { width: 96%; margin-top: 56px; }
  .now-badge { top: 28px; right: 0; width: 112px; border-width: 6px; }
  .now-badge span { font-size: 25px; }
  .offer-area { margin-top: 0; }
  .offer-grid { gap: 12px; }
  .offer-card { min-height: 350px; padding: 34px 12px 17px; }
  .offer-icon, .offer-icon svg { width: 54px; height: 54px; }
  .offer-card h2 { font-size: 23px; }
  .offer-value strong { font-size: 118px; }
  .offer-value > span { font-size: 29px; }
  .offer-value-split small { font-size: 22px; }
  .offer-value-split b { font-size: 44px; }
  .offer-note { font-size: 9.5px; }
  .about-box { padding-left: 30px; padding-right: 30px; }
  .about-step span { font-size: 11px; white-space: normal; }
  .reason-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
  .reason-card { grid-column: span 2; min-height: 270px; }
  .reason-card:nth-child(4) { grid-column: 2 / span 2; }
  .reason-card:nth-child(5) { grid-column: 4 / span 2; }
  .reason-card p { font-size: 11px; }
  .recommend-grid { gap: 10px; }
  .recommend-card { min-height: 320px; padding-left: 10px; padding-right: 10px; }
  .recommend-card h3 { font-size: 16px; }
  .recommend-card img { height: 168px; width: min(100%, 230px); }
  .recommend-card p { font-size: 12.5px; }
  .voice-grid { gap: 10px; }
  .voice-card { grid-template-columns: 82px minmax(0, 1fr); min-height: 190px; padding: 12px 10px; gap: 8px; }
  .voice-card img { width: 82px; height: 82px; }
  .voice-text h3 { font-size: 12px; }
  .voice-text p { font-size: 10.5px; }
  .voice-text small { font-size: 10px; }
}

@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 24px), 620px); }
  .site-header { padding-top: 12px; }
  .header-inner { flex-direction: column; gap: 10px; padding: 0; }
  .brand img { width: 196px; }
  .header-actions { width: 100%; }
  .btn-header { flex: 1; min-width: 0; height: 40px; padding: 0 10px; font-size: 12px; }
  .hero { padding-top: 7px; }
  .hero-confetti { opacity: .68; background-size: 430px 310px; }
  .hero::before { right: -180px; top: 250px; width: 620px; height: 460px; }
  .hero-inner { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { width: 100%; padding: 8px 0 0; text-align: center; }
  .campaign-ribbon { width: calc(100% - 38px); max-width: 430px; height: 48px; margin: 0 auto 18px; font-size: 16px; }
  .campaign-ribbon::before, .campaign-ribbon::after { height: 48px; }
  .hero-kicker { margin-bottom: 13px; font-size: 12px; white-space: normal; }
  .hero-title { font-size: clamp(42px, 11.3vw, 58px); white-space: normal; }
  .hero-lead { width: 100%; margin: 17px 0 16px; font-size: 12px; }
  .limited-block { width: min(100%, 365px); margin: 0 auto; }
  .limited-side { font-size: 28px; }
  .limited-number { font-size: 80px; }
  .limited-main { font-size: 30px; }
  .hero-visual { width: 100%; max-width: 520px; min-height: 330px; margin: 0 auto; transform: none; }
  .laptop-mockup { width: 94%; margin-top: 54px; }
  .laptop-lid { padding: 7px 7px 9px; border-radius: 12px 12px 5px 5px; }
  .laptop-base { height: 14px; }
  .now-badge { top: 15px; right: 1%; width: 92px; border-width: 5px; }
  .now-badge span { font-size: 21px; }
  .now-badge::before, .now-badge::after { top: 17px; height: 9px; }
  .now-badge::before { left: 28px; }
  .now-badge::after { right: 28px; }
  .offer-area { margin-top: 2px; }
  .offer-area { max-width: 620px; }
  .offer-grid { grid-template-columns: 1fr; width: min(100%, 520px); margin-left: auto; margin-right: auto; gap: 13px; }
  .offer-card { min-height: 305px; padding-top: 31px; }
  .offer-value strong { font-size: 124px; }
  .offer-value-split b { font-size: 48px; }
  .offer-note { font-size: 10.5px; }
  .campaign-period { flex-direction: column; gap: 4px; padding: 12px 10px; text-align: center; }
  .campaign-period p { display: flex; flex-direction: column; align-items: center; }
  .campaign-period p { font-size: 12px; line-height: 1.65; }
  .campaign-period strong { font-size: 15px; }
  .btn-cta { width: min(100%, 520px); padding-left: 28px; padding-right: 28px; }
  .section-about { padding-top: 21px; }
  .about-box { padding: 25px 18px 24px; }
  .about-label { font-size: 10.5px; letter-spacing: .08em; }
  .about-box .section-title { font-size: 24px; margin-bottom: 10px; }
  .about-lead { font-size: 15px; line-height: 1.7; }
  .about-description { font-size: 13px; line-height: 1.8; }
  .about-flow { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
  .about-step { min-height: 62px; padding: 8px 6px; }
  .about-step b { font-size: 10px; }
  .about-step span { font-size: 11px; white-space: normal; }
  .about-flow i { display: none; }
  .section-title { font-size: 23px; }
  .reason-grid { grid-template-columns: 1fr; width: min(100%, 520px); margin-left: auto; margin-right: auto; gap: 9px; }
  .reason-card {
    min-height: 0;
    padding: 13px 15px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas: "image title" "image text";
    column-gap: 13px;
    row-gap: 3px;
    align-items: center;
    text-align: left;
  }
  .reason-card:last-child { width: auto; justify-self: stretch; }
  .reason-image { grid-area: image; height: 84px; margin: 0; }
  .reason-image img { width: 88px; height: 80px; }
  .reason-card h3 { grid-area: title; min-height: 0; margin: 0; font-size: 14px; line-height: 1.45; }
  .reason-card p { grid-area: text; font-size: 11px; line-height: 1.55; }
  .reason-card h3 br, .reason-card p br { display: none; }
  .recommend-grid, .voice-grid { grid-template-columns: 1fr; width: min(100%, 520px); margin-left: auto; margin-right: auto; }
  .recommend-card { min-height: 322px; }
  .recommend-card img { height: 176px; width: min(100%, 240px); }
  .voice-card { min-height: 0; grid-template-columns: 88px minmax(0, 1fr); padding: 14px; }
  .voice-card img { width: 84px; height: 84px; }
  .voice-text h3 { font-size: 13px; }
  .voice-text p { font-size: 11.5px; }
  .voice-text small { font-size: 10.5px; }
  .bottom-cta-box { padding: 24px 18px 18px; }
  .bottom-cta-box h2 { font-size: 21px; line-height: 1.45; }
  .bottom-cta-box h2 strong { font-size: 49px; }
  .bottom-cta-period { flex-direction: column; flex-wrap: nowrap; gap: 3px; font-size: 11px; line-height: 1.55; }
  .bottom-cta-period strong { font-size: 13px; }
  .btn-cta-bottom { width: 100%; }
  .laurel { display: none; }
  .footer-inner { flex-direction: column; justify-content: center; gap: 9px; padding-top: 5px; }
  .footer-nav { justify-content: center; gap: 8px 12px; text-align: center; }
}

@media (max-width: 390px) {
  .wrap { width: min(calc(100% - 18px), 560px); }
  .brand img { width: 184px; }
  .btn-header { font-size: 11px; }
  .header-icon { width: 15px; height: 15px; }
  .campaign-ribbon { font-size: 14px; }
  .hero-title { font-size: 41px; }
  .limited-number { font-size: 70px; }
  .limited-main { font-size: 27px; }
  .limited-banner { width: 236px; font-size: 12px; }
}

@media (max-width: 420px) {
  .btn-cta .cta-chevron { right: 16px; width: 17px; height: 17px; }
  .btn-cta { padding-left: 24px; padding-right: 24px; }
  .cta-center { gap: 8px; }
}


@media (hover: hover) {
  .btn-header, .btn-cta { transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; }
  .btn-header:hover, .btn-cta:hover { transform: translateY(-1px); filter: brightness(1.02); }
  .btn-cta:hover { box-shadow: 0 16px 27px rgba(7,113,155,.27); }
}
.btn:focus-visible, .brand:focus-visible, .footer-brand:focus-visible, .footer-nav a:focus-visible { outline: 3px solid rgba(7,141,168,.35); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn-header, .btn-cta { transition: none; } }
