@charset "UTF-8";

:root {
  --ink: #151728;
  --muted: #62677a;
  --paper: #f6f7fb;
  --white: #ffffff;
  --blue: #3858df;
  --deep-blue: #18389a;
  --pale-blue: #dfe8ff;
  --yellow: #f6df83;
  --pink: #f1cfdd;
  --line: rgba(21, 23, 40, 0.12);
  --radius-lg: 42px;
  --radius-md: 26px;
  --shadow: 0 24px 70px rgba(34, 46, 103, 0.14);
  --font-sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --font-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 4px;
}

.top-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 4px;
  background: linear-gradient(90deg, #dbe6ff 0%, #d3c7ed 28%, #f6d3dc 58%, #f8e28c 82%, #beded5 100%);
}

.site-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(21, 23, 40, 0.08);
  background: #fff;
  box-shadow: 0 8px 24px rgba(21, 23, 40, 0.055);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 64px));
  height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 13px;
  font-weight: 700;
}

.global-nav > a:not(.nav-cta) {
  position: relative;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
}

.section-shell {
  width: min(1220px, calc(100% - 80px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 160px 5.5vw 90px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), transparent 38%),
    #eef1fb;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 5vw;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.hero-copy {
  padding-top: 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow span {
  width: 40px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 3.9vw, 60px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.24;
  word-break: keep-all;
}

.hero h1 > span,
.hero h1 em {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  position: relative;
  width: fit-content;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  z-index: -1;
  height: 16px;
  border-radius: 999px;
  background: rgba(246, 223, 131, 0.7);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  margin: 38px 0 0;
  color: #454b62;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 2;
}

.hero-lead span,
.hero-note p span {
  display: block;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(21, 23, 40, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(21, 23, 40, 0.22);
}

.button-secondary {
  border-color: rgba(21, 23, 40, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 50px;
}

.hero-note-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 12px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.9;
}

.hero-visual {
  position: relative;
  width: min(650px, 100%);
  margin-left: auto;
  padding: 16px 18px 26px 0;
}

.portrait-backdrop {
  position: absolute;
  top: 36px;
  right: 0;
  bottom: 0;
  left: 30px;
  border-radius: 36px;
  background: linear-gradient(145deg, #7a91ee 0%, #4566de 50%, #314ebf 100%);
  transform: rotate(2deg);
}

.portrait-backdrop::after {
  position: absolute;
  top: -34px;
  right: -24px;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  content: "";
}

.portrait-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 36px;
  background: #d2d9f0;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: auto;
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 54px 24px 22px;
  background: linear-gradient(transparent, rgba(10, 13, 31, 0.82));
  color: var(--white);
}

.portrait-caption span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-caption strong {
  font-family: var(--font-serif);
  font-size: 25px;
  letter-spacing: 0.12em;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 120px;
  left: -85px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(56, 88, 223, 0.18);
}

.hero-orb-two {
  right: -90px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  background: rgba(241, 207, 221, 0.42);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 5.5vw;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.scroll-cue i {
  position: relative;
  width: 68px;
  height: 1px;
  overflow: hidden;
  background: rgba(21, 23, 40, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--blue);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.statement,
.activities {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 60px;
}

.statement {
  padding-top: 150px;
  padding-bottom: 160px;
}

.section-index {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 8px;
  color: var(--muted);
}

.section-index span {
  font-family: var(--font-serif);
  font-size: 13px;
}

.section-index p {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.statement-content h2,
.section-title-row h2,
.profile-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 57px);
  letter-spacing: -0.045em;
  line-height: 1.4;
  line-break: strict;
  text-wrap: balance;
}

.heading-line {
  display: block;
}

.mobile-line {
  display: inline;
}

.statement-content h2 span,
.profile-copy h2 span {
  color: var(--blue);
}

.statement-content h2 .heading-line-dark {
  color: var(--ink);
}

.statement-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px;
  margin-top: 62px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.statement-body p {
  margin: 0;
  color: #4d5265;
  font-size: 15px;
  line-height: 2.15;
}

.method {
  padding: 130px 0 145px;
  background: var(--white);
}

.method-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.method-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.method-head > p,
.section-title-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 65px;
}

.method-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.method-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.card-blue {
  background: var(--pale-blue);
}

.card-yellow {
  background: var(--yellow);
}

.card-pink {
  background: var(--pink);
}

.card-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #4d5265;
  font-family: var(--font-serif);
  font-size: 13px;
}

.method-icon {
  display: grid;
  width: 112px;
  height: 112px;
  margin: 18px 0 55px;
  place-items: center;
  border: 1px solid rgba(21, 23, 40, 0.12);
  border-radius: 46% 54% 48% 52% / 58% 42% 58% 42%;
  background: rgba(255, 255, 255, 0.42);
  font-family: var(--font-serif);
  font-size: 34px;
  transform: rotate(-6deg);
}

.card-label,
.activity-title span {
  margin: 0;
  color: #4d5265;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.method-card h3 {
  margin: 8px 0 13px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.method-card > p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.activities {
  padding-top: 150px;
  padding-bottom: 165px;
}

.section-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 70px;
}

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

.activity-row {
  display: grid;
  grid-template-columns: 54px minmax(190px, 0.9fr) minmax(270px, 1.3fr) 92px;
  align-items: center;
  gap: 28px;
  padding: 32px 4px;
  border-bottom: 1px solid var(--line);
}

.activity-no {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 15px;
}

.activity-title h3 {
  margin: 4px 0 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.activity-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.circle-link {
  display: grid;
  width: 50px;
  height: 50px;
  justify-self: end;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.circle-link:hover {
  background: var(--blue);
  transform: rotate(8deg);
}

.status-pill {
  display: inline-flex;
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.youtube-feature {
  padding: 0 0 155px;
  background: var(--paper);
}

.youtube-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 40, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.youtube-visual {
  position: relative;
  display: flex;
  min-height: 490px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 51, 69, 0.38), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(82, 110, 239, 0.58), transparent 38%),
    linear-gradient(145deg, #101322 0%, #171b32 100%);
  color: var(--white);
}

.youtube-visual::before,
.youtube-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.youtube-visual::before {
  top: -95px;
  right: -105px;
  width: 300px;
  height: 300px;
}

.youtube-visual::after {
  right: 48px;
  bottom: -85px;
  width: 210px;
  height: 210px;
}

.youtube-logo {
  position: relative;
  z-index: 1;
  width: 122px;
  height: 86px;
  margin-bottom: 56px;
  border-radius: 25px;
  background: #ff0033;
  box-shadow: 0 22px 45px rgba(255, 0, 51, 0.28);
  transform: rotate(-4deg);
}

.youtube-logo::after {
  position: absolute;
  top: 25px;
  left: 49px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--white);
  content: "";
}

.youtube-handle {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  color: #aabaff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.youtube-visual strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(31px, 3.2vw, 47px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.youtube-visual > p:not(.youtube-handle) {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.9;
}

.youtube-topics {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.youtube-topics span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.youtube-copy {
  padding: 28px 36px 28px 0;
}

.youtube-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 4vw, 56px);
}

.youtube-copy > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.youtube-live-card {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(21, 23, 40, 0.1);
  border-radius: 18px;
  background: #f8f9fd;
}

.youtube-live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #555b70;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.youtube-live-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0033;
  box-shadow: 0 0 0 4px rgba(255, 0, 51, 0.1);
}

.youtube-live-card .g-ytsubscribe {
  min-height: 48px;
}

.youtube-live-card noscript a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.youtube-live-note {
  margin: 10px 0 0;
  color: #73788a;
  font-size: 10px;
  line-height: 1.7;
}

.youtube-channel-button {
  margin-top: 28px;
}

.profile-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.profile-section::before {
  position: absolute;
  top: -170px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.profile-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 6vw;
}

.profile-image-wrap {
  position: relative;
  padding: 24px;
}

.profile-shape {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--blue), #8399ed);
  transform: rotate(-2deg);
}

.profile-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border: 6px solid rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.profile-sign {
  position: absolute;
  right: 8px;
  bottom: -5px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  letter-spacing: 0.08em;
  transform: rotate(-7deg);
}

.light-index {
  color: rgba(255, 255, 255, 0.52);
}

.profile-copy .section-index {
  margin-bottom: 50px;
}

.profile-copy .section-kicker {
  color: #aabaff;
}

.profile-copy h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.profile-copy h2 span {
  color: #9bb0ff;
}

.profile-copy h2 .heading-line-light,
.profile-copy h2 .heading-line-light .mobile-line {
  color: var(--white);
}

.profile-copy > p:not(.section-kicker) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 2.1;
}

.profile-name {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.button-profile {
  margin-top: 32px;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-profile:hover {
  background: rgba(255, 255, 255, 0.08);
}

.profile-name strong {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.1em;
}

.profile-name span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.contact-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-inner .section-kicker {
  color: #dfe6ff;
}

.contact-inner h2 {
  font-size: clamp(39px, 5vw, 68px);
}

.contact-inner > p:not(.section-kicker) {
  margin: 30px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 2;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(14, 31, 105, 0.25);
}

.button-contact-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-contact-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
}

.contact-shape-one {
  top: -180px;
  left: -100px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-shape-two {
  right: -40px;
  bottom: -200px;
  width: 420px;
  height: 420px;
  background: rgba(241, 207, 221, 0.18);
}

.site-footer {
  padding: 64px 0 40px;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.copyright {
  margin: 0;
  color: #62677a;
  font-size: 9px;
  letter-spacing: 0.1em;
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    gap: 4vw;
  }

  .activity-row {
    grid-template-columns: 44px minmax(180px, 0.8fr) minmax(250px, 1.2fr) 80px;
  }

  .youtube-panel {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
  }

  .youtube-copy {
    padding-right: 10px;
  }

}

@media (max-width: 860px) {
  .header-inner {
    width: min(100% - 40px, 760px);
    height: 70px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: flex;
    width: 54px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    margin-right: 8px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
  }

  .menu-button i,
  .menu-button i::before {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .menu-button i::before {
    content: "";
    transform: translateY(-6px);
  }

  .menu-button[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::before {
    transform: rotate(90deg);
  }

  .global-nav {
    position: fixed;
    top: 75px;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    height: calc(100vh - 75px);
    height: calc(100dvh - 75px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #f7f8fc;
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .global-nav > a:not(.nav-cta) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 26px;
  }

  .section-shell {
    width: min(100% - 44px, 720px);
  }

  .hero {
    padding: 130px 22px 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
    max-width: 680px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual {
    width: min(500px, 90%);
    margin: 0 auto;
  }

  .scroll-cue {
    display: none;
  }

  .statement,
  .activities {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 30px;
  }

  .statement-body,
  .method-head,
  .section-title-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .method-card {
    min-height: 320px;
  }

  .method-icon {
    margin-bottom: 35px;
  }

  .activity-row {
    grid-template-columns: 40px 1fr auto;
  }

  .activity-row > p {
    grid-column: 2 / 4;
  }

  .status-pill,
  .circle-link {
    grid-column: 3;
    grid-row: 1;
  }

  .youtube-feature {
    padding-bottom: 120px;
  }

  .youtube-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .youtube-visual {
    min-height: 420px;
  }

  .youtube-copy {
    padding: 28px 18px 22px;
  }

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

  .profile-image-wrap {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 36px;
  }

  .hero-visual {
    width: 100%;
    padding: 10px 8px 20px 0;
  }

  .portrait-frame {
    border-width: 5px;
    border-radius: 24px;
  }

  .statement,
  .activities {
    display: block;
    padding-top: 105px;
    padding-bottom: 110px;
  }

  .section-index {
    margin-bottom: 38px;
  }

  .section-index p {
    writing-mode: horizontal-tb;
  }

  .statement-content h2,
  .section-title-row h2,
  .profile-copy h2,
  .contact-inner h2 {
    font-size: clamp(31px, 9.2vw, 44px);
  }

  .mobile-line {
    display: block;
  }

  .statement-body {
    margin-top: 42px;
  }

  .method {
    padding: 100px 0;
  }

  .method-grid {
    margin-top: 45px;
  }

  .method-card {
    padding: 28px;
  }

  .activity-list {
    margin-top: 45px;
  }

  .activity-row {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0;
  }

  .activity-title {
    padding-right: 0;
  }

  .activity-row > p {
    grid-column: 2;
  }

  .status-pill,
  .circle-link {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }

  .youtube-feature {
    padding-bottom: 105px;
  }

  .youtube-panel {
    width: min(100% - 28px, 720px);
    padding: 10px;
    border-radius: 28px;
  }

  .youtube-visual {
    min-height: 390px;
    padding: 34px 28px;
    border-radius: 22px;
  }

  .youtube-logo {
    width: 96px;
    height: 68px;
    margin-bottom: 44px;
    border-radius: 20px;
  }

  .youtube-logo::after {
    top: 20px;
    left: 39px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }

  .youtube-copy {
    padding: 28px 16px 26px;
  }

  .youtube-copy h2 {
    font-size: clamp(31px, 9.2vw, 44px);
  }

  .youtube-live-card {
    padding: 19px 17px;
  }

  .youtube-channel-button {
    width: 100%;
  }

  .profile-section {
    padding: 105px 0;
  }

  .profile-image-wrap {
    width: 100%;
    padding: 20px;
  }

  .profile-copy .section-index {
    margin-bottom: 38px;
  }

  .profile-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-section {
    padding: 100px 0;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

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

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

/* Long-form profile and fixed theory series */

.article-page {
  background:
    linear-gradient(180deg, #eef1fb 0, #f6f7fb 560px, #f6f7fb 100%);
}

.article-hero {
  position: relative;
  padding: 172px 40px 96px;
  overflow: hidden;
}

.article-hero::before,
.article-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.article-hero::before {
  top: 110px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(56, 88, 223, 0.17);
}

.article-hero::after {
  bottom: -190px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(241, 207, 221, 0.32);
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.article-hero .eyebrow {
  margin-bottom: 19px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 28px;
  color: #73788a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.breadcrumbs a {
  color: var(--blue);
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(39px, 5vw, 69px);
  letter-spacing: -0.06em;
  line-height: 1.3;
  text-wrap: balance;
}

.article-description {
  max-width: 760px;
  margin: 28px 0 0;
  color: #50566c;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}

.article-portrait {
  position: relative;
  width: min(380px, 32vw);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 7px solid var(--white);
  border-radius: 34px;
  background: #d2d9f0;
  box-shadow: var(--shadow);
  transform: rotate(1.7deg);
}

.article-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) 220px;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 76px 0 150px;
}

.article-body {
  min-width: 0;
  color: #303548;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 17px;
  line-height: 2.15;
}

.article-body > p {
  margin: 0 0 1.65em;
}

.article-body > h2 {
  margin: 3em 0 1.15em;
  padding: 0 0 0.55em;
  border-bottom: 1px solid rgba(21, 23, 40, 0.14);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(29px, 3.3vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.5;
}

.article-body > h3 {
  position: relative;
  margin: 2.8em 0 1em;
  padding-left: 20px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(23px, 2.5vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.55;
}

.article-body > h3::before {
  position: absolute;
  top: 0.22em;
  bottom: 0.22em;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.article-body > h4 {
  margin: 2.4em 0 0.8em;
  color: var(--deep-blue);
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.6;
}

.article-body strong {
  color: var(--ink);
  font-weight: 800;
  background: linear-gradient(transparent 66%, rgba(246, 223, 131, 0.66) 66%);
}

.article-body a:not(.button):not(.chapter-card) {
  color: var(--deep-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(56, 88, 223, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.article-body blockquote {
  margin: 2.2em 0;
  padding: 28px 32px;
  border-left: 5px solid var(--blue);
  border-radius: 0 18px 18px 0;
  background: var(--white);
  color: #31374f;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  box-shadow: 0 16px 42px rgba(34, 46, 103, 0.08);
}

.article-body ul,
.article-body ol {
  margin: 1.8em 0 2.1em;
  padding: 25px 28px 25px 52px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(34, 46, 103, 0.06);
}

.article-body li + li {
  margin-top: 0.75em;
}

.article-table-scroll {
  margin: 2.2em 0;
  overflow-x: auto;
  border: 1px solid rgba(21, 23, 40, 0.09);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(34, 46, 103, 0.06);
}

.article-table-scroll table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
}

.article-table-scroll th,
.article-table-scroll td {
  padding: 17px 18px;
  border-right: 1px solid rgba(21, 23, 40, 0.08);
  border-bottom: 1px solid rgba(21, 23, 40, 0.08);
  text-align: left;
  vertical-align: top;
}

.article-table-scroll th {
  background: #e9edfb;
  color: var(--ink);
  font-weight: 800;
}

.article-table-scroll tr:last-child td {
  border-bottom: 0;
}

.article-table-scroll th:last-child,
.article-table-scroll td:last-child {
  border-right: 0;
}

.article-body hr {
  width: 70px;
  height: 1px;
  margin: 65px auto;
  border: 0;
  background: rgba(21, 23, 40, 0.18);
}

.article-visual {
  margin: 48px 0 56px;
  padding: 16px;
  border: 1px solid rgba(21, 23, 40, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(34, 46, 103, 0.09);
}

.article-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #eef1fb;
}

.article-visual figcaption {
  padding: 15px 10px 3px;
  color: #666c7e;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 68px;
  font-family: var(--font-sans);
}

.chapter-card {
  position: relative;
  display: block;
  min-height: 180px;
  padding: 25px 28px 28px;
  border: 1px solid rgba(21, 23, 40, 0.08);
  border-radius: 21px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chapter-card:first-child {
  grid-column: 1 / -1;
}

.chapter-card:hover {
  box-shadow: 0 18px 42px rgba(34, 46, 103, 0.1);
  transform: translateY(-4px);
}

.chapter-card > span {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 13px;
}

.chapter-card strong {
  display: block;
  width: fit-content;
  margin-top: 13px;
  background: none;
  font-size: 23px;
}

.chapter-card p {
  margin: 8px 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.chapter-card i {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--blue);
  font-style: normal;
}

.article-cta {
  position: relative;
  margin: 78px 0 65px;
  padding: clamp(35px, 6vw, 60px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 12%, rgba(122, 145, 238, 0.56), transparent 28%),
    linear-gradient(145deg, #151728, #273166);
  color: var(--white);
  font-family: var(--font-sans);
}

.article-cta::after {
  position: absolute;
  right: -85px;
  bottom: -105px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.article-cta .section-kicker {
  color: #aebcf7;
}

.article-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.45;
}

.article-cta p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.9;
}

.article-cta .button {
  position: relative;
  z-index: 1;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 55px;
  font-family: var(--font-sans);
}

.article-pagination a {
  display: flex;
  min-height: 118px;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(21, 23, 40, 0.1);
  border-radius: 18px;
  background: var(--white);
  text-decoration: none;
}

.article-pagination span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.article-pagination strong {
  margin-top: 8px;
  background: none;
  font-size: 14px;
}

.article-next {
  align-items: flex-end;
  text-align: right;
}

.article-sidebar {
  position: sticky;
  top: 116px;
  padding: 28px 25px;
  border: 1px solid rgba(21, 23, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  font-family: var(--font-sans);
}

.article-sidebar p {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.article-sidebar strong {
  display: block;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.65;
}

.article-sidebar a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(21, 23, 40, 0.08);
  color: #555b70;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .article-hero-inner {
    grid-template-columns: 1fr;
  }

  .article-portrait {
    width: min(540px, 100%);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: none;
  }
}

@media (max-width: 560px) {
  .article-hero {
    padding: 132px 20px 72px;
  }

  .article-hero-inner {
    gap: 36px;
  }

  .article-hero h1 {
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.38;
    text-wrap: balance;
  }

  .article-description {
    font-size: 15px;
  }

  .article-portrait {
    border-width: 5px;
    border-radius: 24px;
    transform: rotate(0.6deg);
  }

  .article-layout {
    width: min(100% - 36px, 790px);
    padding: 52px 0 100px;
  }

  .article-body {
    font-size: 16px;
    line-height: 2.05;
  }

  .article-body > h2 {
    margin-top: 2.5em;
    font-size: 29px;
  }

  .article-body > h3 {
    font-size: 23px;
  }

  .article-body blockquote {
    padding: 24px 21px;
    font-size: 16px;
  }

  .article-body ul,
  .article-body ol {
    padding: 22px 20px 22px 42px;
  }

  .chapter-grid,
  .article-pagination {
    grid-template-columns: 1fr;
  }

  .chapter-card:first-child {
    grid-column: auto;
  }

  .article-visual {
    margin-inline: -4px;
    padding: 8px;
    border-radius: 20px;
  }

  .article-cta {
    margin-inline: -4px;
    padding: 34px 24px;
    border-radius: 25px;
  }

  .article-next {
    align-items: flex-start;
    text-align: left;
  }
}

/* Newsletter fixed landing page */

.newsletter-page {
  background:
    linear-gradient(180deg, #eef1fb 0, #f6f7fb 760px, #f6f7fb 100%);
}

.newsletter-hero {
  position: relative;
  padding: 164px 40px 110px;
  overflow: hidden;
}

.newsletter-hero::before {
  position: absolute;
  top: 95px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(56, 88, 223, 0.17);
  border-radius: 50%;
  content: "";
}

.newsletter-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.newsletter-label {
  width: fit-content;
  margin: 0 0 24px;
  padding: 7px 13px;
  border: 1px solid rgba(56, 88, 223, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--deep-blue);
  font-size: 11px;
  font-weight: 800;
}

.newsletter-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.newsletter-hero h1 span,
.newsletter-hero h1 em {
  display: block;
  font-style: normal;
}

.newsletter-hero h1 em {
  width: fit-content;
  margin: 5px 0;
  color: var(--blue);
  background: linear-gradient(transparent 70%, rgba(246, 223, 131, 0.78) 70%);
}

.newsletter-hero-lead {
  max-width: 620px;
  margin: 30px 0 32px;
  color: #4e5469;
  font-size: 16px;
  line-height: 2;
}

.newsletter-hero-note {
  max-width: 570px;
  margin: 16px 0 0;
  color: #6b7184;
  font-size: 10px;
  line-height: 1.8;
}

.newsletter-offer-visual {
  position: relative;
  min-height: 520px;
  padding: 62px 48px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 42px;
  background:
    linear-gradient(rgba(122, 145, 238, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 145, 238, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(47, 255, 151, 0.28), transparent 32%),
    linear-gradient(145deg, #10152d 0%, #111a3a 58%, #28132d 100%);
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow: 0 32px 90px rgba(25, 34, 79, 0.24);
  color: var(--white);
  transform: rotate(1deg);
}

.newsletter-offer-visual::before,
.newsletter-offer-visual::after {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  content: "";
  filter: drop-shadow(0 0 12px currentColor);
}

.newsletter-offer-visual::before {
  top: 155px;
  right: -40px;
  left: 35%;
  background: #25ef8e;
  color: #25ef8e;
  transform: rotate(-14deg);
}

.newsletter-offer-visual::after {
  right: -15px;
  bottom: 118px;
  left: 48%;
  background: #ff4f6f;
  color: #ff4f6f;
  transform: rotate(14deg);
}

.newsletter-offer-glow {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(56, 88, 223, 0.34);
  filter: blur(65px);
}

.newsletter-offer-visual p,
.newsletter-offer-visual strong,
.newsletter-offer-visual small {
  position: relative;
  z-index: 2;
  display: block;
}

.newsletter-offer-visual p {
  margin: 0 0 54px;
  color: #aebcf7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.newsletter-offer-visual strong {
  font-size: clamp(43px, 5vw, 70px);
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.newsletter-offer-visual strong span,
.newsletter-offer-visual strong em {
  color: var(--yellow);
  font-family: var(--font-serif);
  font-size: 1.28em;
  font-style: normal;
}

.newsletter-offer-visual i {
  display: block;
  width: 86px;
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.34);
}

.newsletter-offer-visual small {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.newsletter-layout {
  width: min(920px, calc(100% - 80px));
  margin: 0 auto;
  padding: 105px 0 150px;
}

.newsletter-body > h3 {
  margin: 3em 0 1.35em;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--deep-blue), #304db4);
  color: var(--white);
  font-size: clamp(27px, 3.4vw, 38px);
  line-height: 1.5;
  box-shadow: 0 18px 46px rgba(24, 56, 154, 0.16);
}

.newsletter-body > h3:first-child {
  margin-top: 0;
}

.newsletter-body > h3::before {
  display: none;
}

.newsletter-body > h4 {
  margin-top: 2.6em;
  color: var(--deep-blue);
  font-size: 24px;
}

.newsletter-body > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  padding: 30px 34px 30px 58px;
}

.newsletter-body > ul li {
  break-inside: avoid;
}

.newsletter-register-card {
  position: relative;
  margin: 64px 0 76px;
  padding: clamp(34px, 6vw, 60px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 93% 12%, rgba(246, 223, 131, 0.26), transparent 25%),
    linear-gradient(145deg, #ffffff, #e8edff);
  color: var(--ink);
  font-family: var(--font-sans);
  box-shadow: 0 24px 70px rgba(34, 46, 103, 0.13);
}

.newsletter-register-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(56, 88, 223, 0.16);
  border-radius: 50%;
  content: "";
}

.newsletter-register-card .section-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.newsletter-register-card h3 {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: clamp(25px, 3.5vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.5;
}

.newsletter-register-card h3::before {
  display: none;
}

.newsletter-register-card > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 18px 0 26px;
  color: #565d73;
  font-size: 14px;
  line-height: 1.9;
}

.newsletter-register-card .newsletter-register-link {
  position: relative;
  z-index: 1;
  min-width: min(100%, 400px);
  color: var(--white);
}

.newsletter-register-notes {
  position: relative;
  z-index: 1;
  display: block;
  margin: 24px 0 0;
  padding: 0;
  background: transparent;
  color: #686f82;
  font-size: 10px;
  line-height: 1.8;
  box-shadow: none;
}

.newsletter-register-notes li {
  margin: 0 0 2px;
  list-style-position: inside;
}

.newsletter-privacy {
  margin-top: 80px !important;
  text-align: center;
}

@media (max-width: 900px) {
  .newsletter-hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .newsletter-hero-copy {
    max-width: 700px;
  }

  .newsletter-offer-visual {
    width: min(680px, 100%);
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .newsletter-hero {
    padding: 126px 18px 76px;
  }

  .newsletter-hero-inner {
    gap: 52px;
  }

  .newsletter-label {
    font-size: 9px;
    line-height: 1.6;
  }

  .newsletter-hero h1 {
    font-size: clamp(37px, 11vw, 48px);
    line-height: 1.25;
    word-break: keep-all;
  }

  .newsletter-hero-lead {
    font-size: 15px;
  }

  .newsletter-offer-visual {
    min-height: 390px;
    padding: 42px 26px;
    border-width: 5px;
    border-radius: 28px;
  }

  .newsletter-offer-visual p {
    margin-bottom: 42px;
  }

  .newsletter-offer-visual strong {
    font-size: clamp(37px, 12vw, 55px);
  }

  .newsletter-offer-visual small {
    margin-top: 26px;
    font-size: 15px;
  }

  .newsletter-layout {
    width: min(100% - 36px, 920px);
    padding: 68px 0 105px;
  }

  .newsletter-body > h3 {
    padding: 19px 20px;
    border-radius: 15px;
    font-size: 24px;
  }

  .newsletter-body > ul {
    grid-template-columns: 1fr;
    padding: 24px 20px 24px 42px;
  }

  .newsletter-register-card {
    margin: 48px -4px 58px;
    padding: 34px 23px;
    border-radius: 25px;
  }

  .newsletter-register-card h3 {
    font-size: 25px;
  }

  .newsletter-register-card .newsletter-register-link {
    min-width: 0;
  }
}
