:root {
      --bg: #f6f7f1;
      --bg-soft: #eef3eb;
      --paper: #ffffff;
      --paper-soft: #fbfcf8;
      --green-950: #052817;
      --green-900: #07351f;
      --green-800: #0b4429;
      --green-700: #125a38;
      --green-600: #197348;
      --green-100: #dfeee3;
      --green-50: #edf6ef;
      --sand: #efe6d3;
      --sand-soft: #f7f0e3;
      --brown: #8d6a43;
      --cyan: #13bcc5;
      --text: #122017;
      --muted: #667269;
      --light: #8d978f;
      --line: #dfe6dd;
      --line-dark: rgba(255,255,255,.12);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

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

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

    .page {
      width: 100%;
      overflow: hidden;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(246, 247, 241, .86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(7, 53, 31, .08);
    }

    .header-inner {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--green-900);
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: var(--green-900);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 900;
    }

    .brand-sub {
      display: block;
      margin-top: -3px;
      font-size: 11px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: .02em;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      color: #425046;
      font-size: 14px;
    }

    .nav a {
      transition: color .18s ease;
    }

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

    .header-cta {
      height: 40px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--green-900);
      color: #fff;
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 800;
    }

    .mobile-menu {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--green-900);
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .hero {
      padding: 46px 0 96px;
      background:
        radial-gradient(circle at 8% 8%, rgba(25,115,72,.16), transparent 32%),
        radial-gradient(circle at 96% 22%, rgba(19,188,197,.12), transparent 28%),
        linear-gradient(180deg, #f6f7f1 0%, #eef3eb 100%);
    }

    .hero-shell {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      min-height: 640px;
      padding: 54px;
      border-radius: 36px;
      background: var(--green-950);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .hero-copy:before {
      content: "";
      position: absolute;
      inset: -160px auto auto -160px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(19,188,197,.14);
      filter: blur(10px);
    }

    .hero-copy:after {
      content: "";
      position: absolute;
      right: -140px;
      bottom: -140px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(223,238,227,.13);
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 700;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 6px rgba(19,188,197,.12);
    }

    .hero h1 {
      margin: 26px 0 0;
      max-width: 680px;
      font-size: clamp(48px, 5vw, 76px);
      line-height: .98;
      letter-spacing: -.07em;
      font-weight: 950;
    }

    .hero h1 span {
      display: block;
      margin-top: 12px;
      color: #dcebe0;
    }

    .hero-desc {
      margin: 28px 0 0;
      max-width: 590px;
      color: rgba(255,255,255,.72);
      font-size: 18px;
      line-height: 1.9;
    }

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

    .btn {
      height: 50px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 850;
      font-size: 15px;
      cursor: pointer;
      transition: transform .18s ease, opacity .18s ease, background .18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: #fff;
      color: var(--green-950);
    }

    .btn-dark {
      background: var(--green-900);
      color: #fff;
    }

    .btn-outline {
      border-color: rgba(255,255,255,.2);
      color: #fff;
      background: rgba(255,255,255,.05);
    }

    .hero-bottom {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 36px;
    }

    .hero-metric {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
    }

    .hero-metric strong {
      display: block;
      color: #fff;
      font-size: 18px;
    }

    .hero-metric span {
      display: block;
      margin-top: 4px;
      color: rgba(255,255,255,.56);
      font-size: 13px;
    }

    .hero-visual {
      min-height: 640px;
      border-radius: 36px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.46)),
        url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1600&q=85") center/cover no-repeat;
      position: relative;
    }

    .hero-visual-card {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      padding: 24px;
      border-radius: 26px;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(18px);
      color: var(--green-950);
    }

    .hero-visual-card strong {
      display: block;
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: -.04em;
    }

    .hero-visual-card p {
      margin: 10px 0 0;
      color: #536057;
      font-size: 14px;
    }

    .section {
      padding: 110px 0;
    }

    .section.compact {
      padding: 88px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 36px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-kicker {
      color: var(--green-700);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(32px, 3vw, 52px);
      line-height: 1.12;
      letter-spacing: -.06em;
      color: var(--text);
    }

    .section-intro {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .story-layout {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .story-panel {
      padding: 38px;
      border-radius: var(--radius-xl);
      background: #fff;
      border: 1px solid var(--line);
    }

    .story-panel p {
      margin: 0 0 18px;
      color: #465249;
      font-size: 16px;
      line-height: 1.95;
    }

    .story-quote {
      margin-top: 28px;
      padding: 22px;
      border-radius: 22px;
      background: var(--green-50);
      color: var(--green-900);
      font-weight: 900;
      font-size: 18px;
      line-height: 1.6;
    }

    .story-image {
      min-height: 520px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.35)),
        url("https://images.unsplash.com/photo-1475483768296-6163e08872a1?auto=format&fit=crop&w=1400&q=85") center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }

    .floating-note {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      padding: 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(16px);
    }

    .floating-note strong {
      display: block;
      font-size: 20px;
      color: var(--green-950);
      letter-spacing: -.03em;
    }

    .floating-note span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .position {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .position-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .position-card {
      padding: 34px;
      border-radius: var(--radius-xl);
      background: var(--paper-soft);
      border: 1px solid var(--line);
    }

    .position-card h3 {
      margin: 0;
      font-size: 26px;
      line-height: 1.28;
      letter-spacing: -.04em;
    }

    .position-card p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .loop {
      background: var(--green-950);
      color: #fff;
    }

    .loop .section-title {
      color: #fff;
    }

    .loop .section-intro {
      color: rgba(255,255,255,.64);
    }

    .loop .section-kicker {
      color: #8be2a4;
    }

    .loop-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .loop-step {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .loop-index {
      color: #8be2a4;
      font-weight: 900;
      font-size: 13px;
    }

    .loop-step h3 {
      margin: 24px 0 0;
      color: #fff;
      font-size: 21px;
      letter-spacing: -.04em;
    }

    .loop-step p {
      margin: 10px 0 0;
      color: rgba(255,255,255,.62);
      font-size: 14px;
      line-height: 1.75;
    }

    .loop-summary {
      margin-top: 24px;
      padding: 26px 30px;
      border-radius: 28px;
      background: #fff;
      color: var(--green-950);
      font-size: 22px;
      line-height: 1.5;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .module-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .module-card {
      padding: 28px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      min-height: 292px;
    }

    .module-card:nth-child(4),
    .module-card:nth-child(5) {
      min-height: 250px;
    }

    .module-tag {
      display: inline-flex;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      align-items: center;
      justify-content: center;
      background: var(--green-50);
      color: var(--green-900);
      font-weight: 900;
      margin-bottom: 26px;
    }

    .module-card h3 {
      margin: 0;
      font-size: 24px;
      letter-spacing: -.04em;
      line-height: 1.24;
    }

    .module-card p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
    }

    .keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .keywords span {
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--bg-soft);
      color: var(--green-800);
      font-size: 12px;
      font-weight: 700;
    }

    .ai-section {
      background:
        radial-gradient(circle at 80% 20%, rgba(19,188,197,.2), transparent 28%),
        linear-gradient(135deg, #052817 0%, #07351f 100%);
      color: #fff;
    }

    .ai-section .section-title {
      color: #fff;
    }

    .ai-section .section-intro {
      color: rgba(255,255,255,.64);
    }

    .ai-section .section-kicker {
      color: #8be2a4;
    }

    .ai-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .ai-main {
      padding: 36px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .ai-main h3 {
      margin: 0;
      font-size: 34px;
      line-height: 1.16;
      letter-spacing: -.05em;
      color: #fff;
    }

    .ai-main p {
      margin: 20px 0 0;
      color: rgba(255,255,255,.66);
      font-size: 16px;
      line-height: 1.9;
    }

    .ai-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ai-card {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .ai-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: rgba(19,188,197,.14);
      color: #52e7ee;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .ai-card strong {
      display: block;
      color: #fff;
      font-size: 19px;
    }

    .ai-card span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.6);
      font-size: 14px;
      line-height: 1.75;
    }

    .value-band {
      background: #fff;
    }

    .value-layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 36px;
      align-items: start;
    }

    .sticky-title {
      position: sticky;
      top: 110px;
    }

    .adv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .adv-card {
      padding: 26px;
      border-radius: 26px;
      background: var(--paper-soft);
      border: 1px solid var(--line);
    }

    .adv-num {
      color: var(--green-700);
      font-weight: 950;
      font-size: 14px;
    }

    .adv-card h3 {
      margin: 18px 0 0;
      font-size: 22px;
      letter-spacing: -.04em;
    }

    .adv-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .people-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .person-card {
      padding: 24px 20px;
      border-radius: 26px;
      background: #fff;
      border: 1px solid var(--line);
      min-height: 220px;
    }

    .person-card h3 {
      margin: 0;
      font-size: 20px;
      letter-spacing: -.04em;
    }

    .person-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .scenario-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .scenario-card {
      min-height: 360px;
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      background: #ddd;
    }

    .scenario-card.one {
      background:
        linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.64)),
        url("https://images.unsplash.com/photo-1537225228614-56cc3556d7ed?auto=format&fit=crop&w=1400&q=85") center/cover no-repeat;
    }

    .scenario-card.two {
      background:
        linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.64)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=85") center/cover no-repeat;
    }

    .scenario-content {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      color: #fff;
    }

    .scenario-content h3 {
      margin: 0;
      font-size: 30px;
      letter-spacing: -.05em;
    }

    .scenario-content p {
      margin: 10px 0 0;
      color: rgba(255,255,255,.74);
      font-size: 15px;
      line-height: 1.7;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .service-tags span {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.12);
      font-size: 12px;
      font-weight: 700;
    }

    .path {
      background: var(--sand-soft);
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
    }

    .time-card {
      padding: 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(141,106,67,.12);
      min-height: 218px;
    }

    .time-card b {
      display: block;
      color: var(--brown);
      font-size: 13px;
    }

    .time-card strong {
      display: block;
      margin-top: 18px;
      font-size: 20px;
      line-height: 1.24;
      letter-spacing: -.04em;
    }

    .time-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

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

    .support-card {
      padding: 28px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
    }

    .support-card h3 {
      margin: 0;
      font-size: 22px;
      letter-spacing: -.04em;
    }

    .support-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .region-panel {
      padding: 44px;
      border-radius: 36px;
      background:
        linear-gradient(90deg, rgba(5,40,23,.86), rgba(5,40,23,.46)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
      color: #fff;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .region-panel h2 {
      margin: 0;
      max-width: 700px;
      color: #fff;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.08;
      letter-spacing: -.06em;
    }

    .region-panel p {
      margin: 22px 0 0;
      max-width: 720px;
      color: rgba(255,255,255,.74);
      font-size: 17px;
      line-height: 1.9;
    }

    .vision {
      background: #fff;
    }

    .vision-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      align-items: center;
      padding: 38px;
      border-radius: 36px;
      background: var(--paper-soft);
      border: 1px solid var(--line);
    }

    .vision-card h2 {
      margin: 0;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.08;
      letter-spacing: -.06em;
    }

    .vision-card p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.9;
    }

    .vision-points {
      display: grid;
      gap: 12px;
    }

    .vision-points span {
      padding: 18px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--green-900);
      font-weight: 800;
    }

    .apply {
      background: var(--green-950);
      color: #fff;
      padding: 110px 0;
    }

    .apply .section-title {
      color: #fff;
    }

    .apply .section-intro {
      color: rgba(255,255,255,.64);
    }

    .apply .section-kicker {
      color: #8be2a4;
    }

    .apply-layout {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 30px;
      align-items: start;
    }

    .apply-aside {
      padding: 34px;
      border-radius: 32px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .apply-aside h3 {
      margin: 0;
      color: #fff;
      font-size: 30px;
      line-height: 1.18;
      letter-spacing: -.05em;
    }

    .apply-aside p {
      margin: 18px 0 0;
      color: rgba(255,255,255,.64);
      line-height: 1.8;
    }

    .apply-list {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .apply-list span {
      padding: 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    .form-card {
      padding: 34px;
      border-radius: 32px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      display: block;
      margin-bottom: 8px;
      color: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      color: #fff;
      padding: 14px 14px;
      outline: none;
      font-size: 15px;
    }

    select option {
      color: #111;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255,255,255,.38);
    }

    textarea {
      min-height: 118px;
      resize: vertical;
    }

    .check-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.82);
      font-size: 13px;
    }

    .check-item input {
      width: auto;
    }

    .submit-btn {
      width: 100%;
      height: 54px;
      margin-top: 20px;
      border: none;
      border-radius: 999px;
      background: #fff;
      color: var(--green-950);
      font-size: 16px;
      font-weight: 950;
      cursor: pointer;
    }

    .submit-btn:disabled {
      opacity: .56;
      cursor: not-allowed;
    }

    .privacy {
      margin: 14px 0 0;
      color: rgba(255,255,255,.45);
      font-size: 12px;
      text-align: center;
    }

    .footer {
      padding: 46px 0;
      background: #fff;
      border-top: 1px solid var(--line);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 13px;
    }

    .footer-brand {
      color: var(--green-900);
      font-weight: 950;
      font-size: 18px;
    }

    .mobile-bottom {
      display: none;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 26px;
      transform: translate(-50%, 90px);
      z-index: 100;
      min-width: 280px;
      max-width: calc(100% - 40px);
      padding: 14px 18px;
      border-radius: 999px;
      background: rgba(5,40,23,.96);
      color: #fff;
      text-align: center;
      font-size: 14px;
      opacity: 0;
      transition: all .22s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    @media (max-width: 1024px) {
      .hero-shell,
      .story-layout,
      .position-grid,
      .ai-layout,
      .value-layout,
      .apply-layout,
      .vision-card {
        grid-template-columns: 1fr;
      }

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

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

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

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

      .sticky-title {
        position: static;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .header-inner {
        height: 60px;
      }

      .nav,
      .header-cta {
        display: none;
      }

      .mobile-menu {
        display: inline-flex;
      }

      .hero {
        padding: 22px 0 66px;
      }

      .hero-shell {
        gap: 14px;
      }

      .hero-copy {
        min-height: auto;
        padding: 28px;
        border-radius: 28px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero-desc {
        font-size: 15px;
      }

      .hero-bottom {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 360px;
        border-radius: 28px;
      }

      .hero-visual-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
      }

      .section,
      .section.compact,
      .apply {
        padding: 72px 0;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .section-title {
        font-size: 34px;
      }

      .story-panel,
      .position-card,
      .ai-main,
      .form-card,
      .apply-aside,
      .vision-card {
        padding: 24px;
        border-radius: 26px;
      }

      .story-image {
        min-height: 360px;
      }

      .loop-row,
      .module-grid,
      .ai-grid,
      .adv-grid,
      .people-grid,
      .scenario-layout,
      .timeline,
      .support-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .loop-step {
        min-height: auto;
      }

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

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }

      .mobile-bottom {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 14px;
        z-index: 60;
        height: 58px;
        border-radius: 22px;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(5,40,23,.08);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        box-shadow: 0 12px 34px rgba(5,40,23,.16);
      }

      .mobile-bottom a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green-900);
        font-size: 13px;
        font-weight: 800;
      }
    }

    .fee-section {
      background: var(--bg);
    }

    .policy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .policy-card {
      padding: 30px;
      border-radius: 30px;
      background: #fff;
      border: 1px solid var(--line);
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .policy-value {
      font-size: 54px;
      line-height: 1;
      letter-spacing: -.08em;
      font-weight: 950;
      color: var(--green-900);
    }

    .policy-label {
      margin-top: 18px;
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: -.04em;
      font-weight: 900;
      color: var(--text);
    }

    .policy-desc {
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .fee-panel {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 22px;
      align-items: stretch;
    }

    .fee-intro {
      padding: 34px;
      border-radius: 30px;
      background: var(--green-950);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 360px;
    }

    .fee-intro h3 {
      margin: 0;
      font-size: 34px;
      line-height: 1.16;
      letter-spacing: -.05em;
      color: #fff;
    }

    .fee-intro p {
      margin: 18px 0 0;
      color: rgba(255,255,255,.66);
      font-size: 16px;
      line-height: 1.9;
    }

    .fee-note {
      margin-top: 26px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.76);
      font-size: 14px;
      line-height: 1.75;
    }

    .fee-list {
      padding: 30px;
      border-radius: 30px;
      background: #fff;
      border: 1px solid var(--line);
      display: grid;
      gap: 12px;
    }

    .fee-item {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
    }

    .fee-item:last-child {
      border-bottom: none;
    }

    .fee-index {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: var(--green-50);
      color: var(--green-900);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 950;
    }

    .fee-text {
      color: #405047;
      font-size: 16px;
      line-height: 1.7;
    }

    .fee-text strong {
      color: var(--green-900);
      font-weight: 900;
    }

    @media (max-width: 1024px) {
      .policy-grid,
      .fee-panel {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .policy-card,
      .fee-intro,
      .fee-list {
        padding: 24px;
        border-radius: 26px;
      }

      .policy-value {
        font-size: 46px;
      }

      .fee-intro {
        min-height: auto;
      }

      .fee-intro h3 {
        font-size: 30px;
      }

      .fee-text {
        font-size: 15px;
      }
    }


    /* ===== Refine: premium commercial hero + spacing polish ===== */
    .hero-v2 {
      padding: 48px 0 96px;
      background:
        radial-gradient(circle at 8% 10%, rgba(25,115,72,.15), transparent 28%),
        radial-gradient(circle at 92% 16%, rgba(19,188,197,.10), transparent 26%),
        linear-gradient(180deg, #f6f7f1 0%, #eef3eb 100%);
    }

    .hero-banner {
      position: relative;
      min-height: 680px;
      border-radius: 42px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5,40,23,.88) 0%, rgba(5,40,23,.72) 34%, rgba(5,40,23,.2) 68%, rgba(5,40,23,.1) 100%),
        url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1800&q=88") center/cover no-repeat;
      box-shadow: 0 28px 90px rgba(5, 40, 23, .18);
    }

    .hero-panel {
      width: min(620px, calc(100% - 80px));
      min-height: 680px;
      padding: 62px 58px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .hero-panel h1 {
      margin: 26px 0 0;
      font-size: clamp(54px, 5.8vw, 86px);
      line-height: .96;
      letter-spacing: -.075em;
      font-weight: 950;
    }

    .hero-panel h1 span {
      display: block;
      margin-top: 12px;
      color: #dcebe0;
    }

    .hero-panel .hero-desc {
      max-width: 540px;
      margin-top: 28px;
      font-size: 18px;
      line-height: 1.9;
      color: rgba(255,255,255,.72);
    }

    .hero-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 38px;
      max-width: 520px;
    }

    .hero-mini-grid div {
      min-height: 104px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
    }

    .hero-mini-grid strong {
      display: block;
      color: #fff;
      font-size: 19px;
      letter-spacing: -.03em;
    }

    .hero-mini-grid span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.55;
    }

    .hero-slogan-card {
      position: absolute;
      right: 36px;
      bottom: 36px;
      width: min(520px, calc(100% - 72px));
      padding: 26px 28px;
      border-radius: 28px;
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(18px);
      color: var(--green-950);
      box-shadow: 0 20px 50px rgba(0,0,0,.16);
    }

    .hero-slogan-card strong {
      display: block;
      font-size: 25px;
      line-height: 1.3;
      letter-spacing: -.045em;
    }

    .hero-slogan-card span {
      display: block;
      margin-top: 10px;
      color: #5d685f;
      font-size: 14px;
      line-height: 1.75;
    }

    .fee-intro {
      min-height: auto !important;
      justify-content: flex-start !important;
    }

    .fee-note {
      margin-top: 28px !important;
    }

    .fee-panel {
      align-items: stretch;
    }

    .fee-list {
      align-content: start;
    }

    .section {
      padding-top: 96px;
      padding-bottom: 96px;
    }

    .section.compact {
      padding-top: 82px;
      padding-bottom: 82px;
    }

    .position {
      padding-top: 96px;
      padding-bottom: 96px;
    }

    .loop,
    .ai-section,
    .apply {
      padding-top: 104px;
      padding-bottom: 104px;
    }

    .value-band {
      padding-top: 104px;
      padding-bottom: 104px;
    }

    .path {
      padding-top: 104px;
      padding-bottom: 104px;
    }

    .module-card,
    .adv-card,
    .support-card,
    .person-card,
    .policy-card,
    .position-card {
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .module-card:hover,
    .adv-card:hover,
    .support-card:hover,
    .person-card:hover,
    .policy-card:hover,
    .position-card:hover {
      transform: translateY(-2px);
      border-color: rgba(18, 90, 56, .24);
      background: #fff;
    }

    @media (max-width: 1024px) {
      .hero-banner {
        min-height: 620px;
      }

      .hero-panel {
        min-height: 620px;
        width: min(620px, calc(100% - 56px));
        padding: 44px;
      }

      .hero-slogan-card {
        right: 28px;
        bottom: 28px;
      }
    }

    @media (max-width: 720px) {
      .hero-v2 {
        padding: 22px 0 66px;
      }

      .hero-banner {
        min-height: auto;
        border-radius: 30px;
        background:
          linear-gradient(180deg, rgba(5,40,23,.64) 0%, rgba(5,40,23,.86) 100%),
          url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1100&q=88") center/cover no-repeat;
      }

      .hero-panel {
        width: 100%;
        min-height: auto;
        padding: 34px 26px 28px;
      }

      .hero-panel h1 {
        font-size: 42px;
      }

      .hero-panel .hero-desc {
        font-size: 15px;
      }

      .hero-mini-grid {
        grid-template-columns: 1fr;
        margin-top: 26px;
      }

      .hero-mini-grid div {
        min-height: auto;
      }

      .hero-slogan-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin: 0 18px 18px;
        padding: 20px;
      }

      .hero-slogan-card strong {
        font-size: 20px;
      }

      .section,
      .section.compact,
      .position,
      .loop,
      .ai-section,
      .apply,
      .value-band,
      .path {
        padding-top: 72px;
        padding-bottom: 72px;
      }
    }


    /* ===== Standard commercial banner refinement ===== */
    .hero-standard {
      padding: 46px 0 74px;
      background:
        radial-gradient(circle at 8% 12%, rgba(25,115,72,.13), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(19,188,197,.09), transparent 26%),
        linear-gradient(180deg, #f6f7f1 0%, #eef3eb 100%);
    }

    .hero-banner-standard {
      position: relative;
      min-height: 520px;
      border-radius: 32px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5,40,23,.88) 0%, rgba(5,40,23,.72) 38%, rgba(5,40,23,.18) 72%, rgba(5,40,23,.08) 100%),
        url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1800&q=88") center/cover no-repeat;
      box-shadow: 0 24px 70px rgba(5, 40, 23, .16);
    }

    .hero-standard-content {
      width: min(620px, 54%);
      min-height: 520px;
      padding: 58px 60px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-standard-content h1 {
      margin: 24px 0 0;
      font-size: clamp(46px, 4.2vw, 68px);
      line-height: 1.05;
      letter-spacing: -.07em;
      font-weight: 950;
    }

    .hero-standard-content h1 span {
      display: block;
      margin-top: 8px;
      color: #dcebe0;
    }

    .hero-standard-content .hero-desc {
      max-width: 520px;
      margin-top: 22px;
      color: rgba(255,255,255,.74);
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-sentence {
      max-width: 560px;
      margin-top: 20px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.86);
      font-size: 15px;
      line-height: 1.65;
    }

    .hero-standard-content .hero-actions {
      margin-top: 28px;
    }

    .hero-standard-content .btn-primary {
      background: #fff;
      color: var(--green-950);
    }

    .hero-standard-content .btn-outline {
      border-color: rgba(255,255,255,.22);
      color: #fff;
      background: rgba(255,255,255,.05);
    }

    .hero-feature-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .hero-feature-card {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      color: var(--green-950);
    }

    .hero-feature-card strong {
      display: block;
      font-size: 21px;
      line-height: 1.2;
      letter-spacing: -.04em;
      font-weight: 900;
    }

    .hero-feature-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
      .hero-banner-standard {
        min-height: 500px;
      }

      .hero-standard-content {
        width: min(680px, 70%);
        min-height: 500px;
        padding: 46px;
      }

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

    @media (max-width: 720px) {
      .hero-standard {
        padding: 22px 0 58px;
      }

      .hero-banner-standard {
        min-height: auto;
        border-radius: 28px;
        background:
          linear-gradient(180deg, rgba(5,40,23,.42) 0%, rgba(5,40,23,.9) 100%),
          url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1100&q=88") center/cover no-repeat;
      }

      .hero-standard-content {
        width: 100%;
        min-height: 520px;
        padding: 34px 26px;
        justify-content: flex-end;
      }

      .hero-standard-content h1 {
        font-size: 42px;
      }

      .hero-standard-content .hero-desc {
        font-size: 15px;
      }

      .hero-sentence {
        font-size: 14px;
      }

      .hero-feature-row {
        grid-template-columns: 1fr;
      }

      .hero-feature-card {
        padding: 18px;
      }
    }
