    :root {
      --bg: #f0fafa;
      --header-bg: #dff3ff;
      --surface: #ffffff;
      --fg: #002355;
      --muted: #002355;
      --line: #8fd8ff;
      --soft-blue: #dff3ff;
      --soft-blue-2: #f0fafb;
      --dark: #002355;
      --dark-muted: #c4d9de;
      --accent: #00a0ff;
      --accent-dark: #00a0ff;
      --warn: #8b6b2f;
      --radius: 8px;
      --header-row-height: 72px;
      --header-cols: 36.8% 14% 13.5% 12.9% 22.8%;
      --hero-aspect: 2.536;
      --font-display: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-mono: "SFMono-Regular", "Menlo", "Consolas", ui-monospace, monospace;
    }

    * { box-sizing: border-box; }

    html {
      color: var(--fg);
      background: var(--bg);
      font-family: var(--font-body);
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      line-height: 1.7;
      letter-spacing: 0;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    figure {
      margin: 0;
    }

    a { color: inherit; }

    .container {
      width: 100%;
      max-width: none;
      margin: 0;
    }

    .section > .container {
      padding-inline: clamp(34px, 8vw, 112px);
    }

    .site-header .container,
    .hero .container,
    .band-dark > .container {
      padding-inline: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--header-bg);
      box-shadow: 0 4px 10px rgba(0, 35, 85, 0.14);
    }

    .header-inner {
      display: grid;
      grid-template-columns: var(--header-cols);
      align-items: center;
      height: var(--header-row-height);
      min-height: var(--header-row-height);
      border-left: 0;
      border-right: 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      min-width: 0;
      height: var(--header-row-height);
      min-height: var(--header-row-height);
      padding: 0 clamp(14px, 1.8vw, 22px);
    }

    .brand img {
      width: 300px;
      max-width: 100%;
      height: auto;
      border-radius: 0;
      border: 0;
      background: transparent;
      object-fit: contain;
    }

    .nav {
      display: contents;
      font-size: clamp(16px, 1.3vw, 18px);
      color: var(--muted);
      white-space: nowrap;
    }

    .nav a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: var(--header-row-height);
      min-height: var(--header-row-height);
      padding: 0 clamp(8px, 1.3vw, 16px);
      border-left: 0;
      text-decoration: none;
    }

    .nav a:not(.header-button)::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 6px;
      background: #0a37e1;
      opacity: 0;
      pointer-events: none;
    }

    .nav a:hover {
      color: var(--fg);
      background: color-mix(in srgb, var(--soft-blue) 50%, transparent);
    }

    .nav a:not(.header-button):hover::after,
    .nav a:not(.header-button):focus-visible::after {
      opacity: 1;
    }

    @media (min-width: 901px) {
      .brand {
        border-right: 1px solid #fff;
      }

      .nav a + a {
        border-left: 1px solid #fff;
      }
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 24px;
      border: 3px solid #002355;
      border-radius: 999px;
      background: #ffdc00;
      color: #002355;
      font: 600 14px/1.2 var(--font-body);
      letter-spacing: 0.02em;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 0 #002355;
      transform: translateY(0);
      transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }

    .button:hover,
    .button:focus-visible {
      border-color: #002355;
      background: #ffe866;
      color: #002355;
      box-shadow: 0 2px 0 #002355;
      transform: translateY(2px);
    }

    .button:active {
      box-shadow: 0 0 0 #002355;
      transform: translateY(4px);
    }

    .nav .header-button {
      padding: 0 clamp(10px, 1.5vw, 18px);
    }

    .nav .header-button span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 48px;
      padding: 0 18px;
      border: 3px solid #002355;
      border-radius: 999px;
      background: #ffdc00;
      color: #002355;
      font: 600 14px/1.2 var(--font-body);
      letter-spacing: 0.02em;
      box-shadow: 0 4px 0 #002355;
      transform: translateY(0);
      transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }

    .nav .header-button:hover span,
    .nav .header-button:focus-visible span {
      border-color: #002355;
      background: #ffe866;
      color: #002355;
      box-shadow: 0 2px 0 #002355;
      transform: translateY(2px);
    }

    .nav .header-button:active span {
      box-shadow: 0 0 0 #002355;
      transform: translateY(4px);
    }

    .mobile-nav-actions {
      display: none;
    }

    .mobile-header-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border: 3px solid #002355;
      border-radius: 999px;
      background: #ffdc00;
      color: #002355;
      font: 700 14px/1.2 var(--font-body);
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 3px 0 #002355;
      transform: translateY(0);
      transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }

    .mobile-header-button:hover,
    .mobile-header-button:focus-visible {
      background: #ffe866;
      color: #002355;
      box-shadow: 0 1px 0 #002355;
      transform: translateY(2px);
    }

    .mobile-header-button:active {
      box-shadow: 0 0 0 #002355;
      transform: translateY(3px);
    }

    .menu-toggle {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--fg);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 3px;
      margin: 0 auto;
      border-radius: 999px;
      background: currentColor;
    }

    .button.secondary {
      background: transparent;
      color: var(--fg);
      border-width: 1px;
      border-color: var(--line);
      box-shadow: none;
      transform: none;
    }

    .button.secondary:hover,
    .button.secondary:focus-visible,
    .button.secondary:active {
      background: transparent;
      color: var(--fg);
      border-color: var(--line);
      box-shadow: none;
      transform: none;
    }

    .section {
      display: grid;
      align-items: center;
      padding: clamp(36px, 6vw, 84px) 0;
      border-bottom: 0;
    }

    .section.compact {
      padding: clamp(36px, 5.2vw, 68px) 0;
    }

    [data-od-id="creation-flow-section"] {
      padding-top: clamp(18px, 3vw, 42px);
    }

    .band-blue {
      background: var(--soft-blue);
    }

    .band-white {
      background: var(--surface);
    }

    .band-pale-blue {
      background: #f0faff;
    }

    .band-dark {
      background: var(--dark);
      color: #fff;
    }

    .band-dark .eyebrow,
    .band-dark .lead,
    .band-dark p {
      color: var(--dark-muted);
    }

    #digital-expression-copy {
      scroll-margin-top: var(--header-row-height);
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--accent-dark);
      font: 600 12px/1.3 var(--font-mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h1, h2, h3 {
      margin: 0;
      font-family: var(--font-display);
      color: inherit;
      text-wrap: pretty;
    }

    h1 {
      max-width: 13ch;
      font-size: clamp(40px, 4.4vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.025em;
      font-weight: 650;
    }

    h2 {
      max-width: 16ch;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.12;
      letter-spacing: -0.02em;
      font-weight: 650;
    }

    h3 {
      font-size: 21px;
      line-height: 1.3;
      letter-spacing: -0.01em;
      font-weight: 620;
    }

    p {
      margin: 0;
    }

    .lead {
      max-width: 54ch;
      color: var(--muted);
      font-size: 16.5px;
      line-height: 1.62;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1fr);
      gap: clamp(18px, 4vw, 48px);
      align-items: end;
      margin-bottom: 22px;
    }

    .section-head.centered {
      display: block;
      max-width: 860px;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 48px;
      text-align: center;
    }

    .section-head.centered h2,
    .section-head.centered .lead {
      margin-right: auto;
      margin-left: auto;
    }

    .section-head.centered h2 {
      width: 100%;
      max-width: 860px;
      font-size: 32px;
      font-weight: 600;
    }

    .section-head.centered h2::after {
      content: "";
      display: block;
      width: clamp(120px, 16vw, 190px);
      height: 10px;
      margin: 18px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, #0050b4 0%, #00e1ff 100%);
    }

    [data-od-id="operation-section"] .section-head.centered h2 {
      width: min(100%, 860px);
      max-width: 860px;
    }

    .section-head.centered .lead {
      margin-top: 14px;
    }

    .hero {
      border-top: 0;
      border-bottom: 0;
      padding: 0;
      height: clamp(360px, calc(100vw / var(--hero-aspect)), 760px);
      background: var(--surface);
    }

    .hero-grid {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      display: grid;
      grid-template-columns: 56% 44%;
      grid-template-rows: minmax(0, 1fr) auto;
      gap: 0;
      align-items: stretch;
      height: 100%;
      min-height: 0;
    }

    .hero-grid::before {
      content: "";
      display: none;
      position: absolute;
      inset: 0;
      grid-column: 1 / -1;
      grid-row: 1 / -1;
      z-index: 1;
      background: linear-gradient(
        90deg,
        rgba(223, 243, 255, 0.96) 0%,
        rgba(223, 243, 255, 0.9) 42%,
        rgba(223, 243, 255, 0.48) 62%,
        rgba(223, 243, 255, 0.08) 100%
      );
      pointer-events: none;
    }

    .hero-grid > [data-od-id="hero-copy"] {
      grid-column: 1;
      grid-row: 1;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(24px, 3.4vw, 48px) clamp(28px, 5.8vw, 84px);
    }

    .hero-grid [data-od-id="hero-title"] {
      width: min(1120px, calc(100vw - clamp(56px, 11.6vw, 168px)));
      max-width: none;
      white-space: nowrap;
      font-weight: 900;
    }

    .hero-grid [data-od-id="hero-lead"] {
      max-width: none;
    }

    @media (min-width: 921px) {
      .hero-grid [data-od-id="hero-title"] {
        font-size: 54px;
      }
    }

    .hero-subtitle {
      display: inline-block;
      margin: 0 0 10px;
      max-width: none;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--fg);
      font: 650 clamp(38px, 4.2vw, 52px)/1.08 var(--font-display);
      letter-spacing: -0.02em;
      text-decoration-line: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 8px;
      white-space: nowrap;
    }

    .hero-grid > .hero-actions {
      grid-column: 1;
      grid-row: 2;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-start;
      width: 100%;
      margin: 0;
      padding: 0 clamp(28px, 5.8vw, 84px) clamp(30px, 4.4vw, 64px);
    }

    .hero-grid > .hero-actions .button,
    .voice-cta .button,
    [data-od-id="pricing-section"] > .container > .hero-actions .button {
      width: min(560px, 100%);
      min-height: clamp(48px, 4vw, 58px);
      font-size: 22px;
      font-weight: 900;
    }

    .hero-note {
      margin-top: 16px;
      max-width: 58ch;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .media-frame {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--surface);
    }

    .hero .media-frame {
      position: absolute;
      inset: 0 0 0 auto;
      grid-column: 1 / -1;
      grid-row: 1 / -1;
      z-index: 0;
      width: min(680px, 48vw);
      height: 100%;
      border: 0;
      border-radius: 0;
      align-self: stretch;
    }

    .media-frame img {
      aspect-ratio: 3 / 2;
      object-fit: cover;
    }

    .hero .media-frame img {
      height: 100%;
      aspect-ratio: auto;
      object-position: center right;
    }

    .feature-grid,
    .card-grid,
    .reason-grid,
    .material-grid,
    .voice-grid,
    .contact-grid {
      display: grid;
      gap: 16px;
    }

    .feature-grid,
    .reason-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid {
      width: min(100%, calc(3 * 363.812px + 32px));
      margin-inline: auto;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      justify-content: stretch;
    }

    .card-grid > .photo-card {
      width: 100% !important;
      min-width: 0;
    }

    .material-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .voice-grid,
    .contact-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card,
    .quote,
    .price-card,
    .info-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 20px;
    }

    .feature-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .feature-grid .card {
      background: transparent;
    }

    .feature-grid .card h3 {
      text-align: center;
      font-weight: 500;
    }

    .reason-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(150px, 24%);
      gap: clamp(18px, 3vw, 32px);
      align-items: center;
    }

    .reason-copy {
      min-width: 0;
    }

    .reason-copy h3,
    .reason-copy p,
    .reason-copy li {
      overflow-wrap: anywhere;
      word-break: normal;
    }

    .reason-title-highlight {
      background: linear-gradient(transparent 60%, #ffdc00 60%);
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    .reason-image {
      align-self: stretch;
      min-height: 128px;
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
      background: var(--soft-blue);
    }

    .reason-image-transparent {
      background: transparent;
    }

    .reason-image img {
      width: 100%;
      height: 100%;
      min-height: 128px;
      object-fit: cover;
    }

    .card p,
    .quote p,
    .material-card p,
    .info-card p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }

    .story-grid,
    .materials-overview,
    .flow-row,
    .message-grid,
    .pricing-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
      gap: clamp(22px, 4vw, 48px);
      align-items: center;
    }

    .story-grid,
    .materials-overview {
      grid-template-columns: 60% 40%;
      gap: 0;
      align-items: stretch;
    }

    .story-copy,
    .materials-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(28px, 5vw, 68px) clamp(28px, 5.6vw, 78px);
    }

    .story-copy .dark-section-title,
    .materials-copy .dark-section-title,
    .message-copy h2 {
      max-width: 16ch;
    }

    .story-copy .dark-section-title,
    .materials-copy .dark-section-title {
      font-size: 44px;
    }

    .story-copy p,
    .materials-copy p,
    .message-copy p {
      margin-top: 22px;
      max-width: 63ch;
      font-size: 17px;
      line-height: 1.68;
    }

    .image-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--surface);
    }

    .image-card img {
      aspect-ratio: 3 / 2;
      object-fit: cover;
    }

    .story-grid .image-card,
    .materials-overview .image-card {
      height: 100%;
      border-top: 0;
      border-bottom: 0;
      border-right: 0;
      border-radius: 0;
    }

    .materials-overview .image-card {
      border-left: 0;
    }

    .story-grid .image-card {
      border-left: 0;
    }

    .story-grid .image-card img,
    .materials-overview .image-card img {
      height: 100%;
      aspect-ratio: auto;
    }

    .image-card figcaption {
      padding: 12px 14px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
      border-top: 1px solid var(--line);
    }

    .band-dark .image-card {
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
    }

    .band-dark .image-card figcaption {
      border-color: rgba(255, 255, 255, 0.14);
      color: var(--dark-muted);
    }

    .photo-card {
      overflow: hidden;
      padding: 0;
    }

    .photo-card img {
      aspect-ratio: 3 / 2;
      object-fit: cover;
    }

    .photo-card .card-body {
      padding: 18px;
    }

    .quote {
      display: flex;
      flex-direction: column;
      min-height: 240px;
    }

    .quote .label {
      color: var(--accent-dark);
      font: 600 12px/1.4 var(--font-mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .quote p {
      color: var(--fg);
      font-size: 18px;
      line-height: 1.8;
    }

    .quote-foot {
      margin-top: auto;
      padding-top: 18px;
      color: var(--muted);
      font-size: 13px;
    }

    .voice-cta {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .materials-overview {
      margin-bottom: 0;
    }

    .material-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--surface);
    }

    .material-card img {
      aspect-ratio: 3 / 2;
      object-fit: cover;
      border-bottom: 1px solid var(--line);
    }

    .material-card .body {
      padding: 20px;
    }

    details {
      margin-top: 14px;
      border-top: 1px solid var(--line);
      padding-top: 12px;
    }

    summary {
      cursor: pointer;
      color: var(--accent-dark);
      font: 600 13px/1.4 var(--font-body);
      letter-spacing: 0.02em;
    }

    details p {
      margin-top: 10px;
    }

    .flow-list {
      display: grid;
      gap: 20px;
    }

    .flow-row {
      grid-template-columns: 27% 46%;
      justify-content: center;
      gap: 4%;
      align-items: stretch;
    }

    .flow-row .image-card img {
      height: 100%;
      min-height: 240px;
    }

    .flow-text {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: clamp(22px, 4vw, 34px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .flow-text p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 17px;
    }

    [data-od-id="operation-flow-register"],
    [data-od-id="operation-flow-activity"],
    [data-od-id="developer-section"] .message-grid {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      width: min(100%, 1080px);
      margin-inline: auto;
      grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.24fr);
      justify-content: center;
      gap: 0;
      align-items: stretch;
      padding: 0;
      overflow: hidden;
      box-shadow: none;
    }

    [data-od-id="operation-flow-register"] .image-card,
    [data-od-id="operation-flow-register"] .flow-text,
    [data-od-id="operation-flow-activity"] .image-card,
    [data-od-id="operation-flow-activity"] .flow-text {
      border: 0;
      background: transparent;
    }

    [data-od-id="operation-flow-register"] .image-card,
    [data-od-id="operation-flow-activity"] .image-card,
    [data-od-id="developer-section"] .message-grid .image-card {
      height: 100%;
      border-radius: 0;
    }

    [data-od-id="operation-flow-register"] .image-card img,
    [data-od-id="operation-flow-activity"] .image-card img,
    [data-od-id="developer-section"] .message-grid .image-card img {
      height: 100%;
      min-height: 270px;
      aspect-ratio: auto;
      object-fit: cover;
    }

    [data-od-id="operation-flow-register"] .flow-text,
    [data-od-id="operation-flow-activity"] .flow-text,
    [data-od-id="developer-section"] .message-copy {
      padding: clamp(28px, 4vw, 44px);
    }

    [data-od-id="operation-flow-register"] .flow-text h3,
    [data-od-id="operation-flow-activity"] .flow-text h3 {
      font-size: clamp(22px, 2.2vw, 30px);
      line-height: 1.35;
    }

    [data-od-id="developer-section"] .message-grid {
      grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.24fr);
    }

    [data-od-id="developer-section"] .image-card img {
      height: 100%;
      min-height: 240px;
      object-fit: cover;
    }

    [data-od-id="developer-section"] .message-copy {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: clamp(28px, 4vw, 44px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    [data-od-id="developer-section"] .message-copy p {
      margin-top: 0;
    }

    [data-od-id="developer-section"] .message-grid .image-card,
    [data-od-id="developer-section"] .message-copy {
      border: 0;
      background: transparent;
    }

    .profile-list,
    .price-list,
    .company-list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .profile-list li,
    .price-list li,
    .company-list li {
      padding-left: 18px;
      position: relative;
      color: var(--muted);
    }

    .profile-list li::before,
    .price-list li::before,
    .company-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.76em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-dark);
    }

    .price-card {
      padding: clamp(26px, 5vw, 42px);
    }

    .price-card.wide {
      width: 77%;
      max-width: none;
      margin: 0 auto;
    }

    .price-layout {
      display: grid;
      grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
      gap: clamp(24px, 5vw, 46px);
      align-items: center;
    }

    .price-card .plan {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 6px 18px;
      background: var(--dark);
      color: #fff;
      font: 700 18px/1.2 var(--font-body);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .price {
      margin: 8px 0 0;
      font-size: clamp(56px, 8vw, 82px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      font-weight: 650;
    }

    .price .yen {
      font-size: 0.52em;
      letter-spacing: 0;
      font-weight: 650;
    }

    .price-note {
      margin: 16px 0 0;
      color: var(--muted);
      font: 600 18px/1.4 var(--font-body);
      letter-spacing: 0.02em;
    }

    .price-card .hero-actions {
      justify-content: center;
      margin-top: 30px;
    }

    .price-card .hero-actions .button {
      min-width: min(56vw, 570px);
    }

    .faq-list {
      display: grid;
      gap: 12px;
      width: 75%;
      margin: 0 auto;
    }

    .faq-list details {
      margin: 0;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
    }

    .faq-list summary {
      padding: 18px 20px;
      color: var(--fg);
      font-size: 16px;
    }

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

    .contact-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: clamp(24px, 4vw, 36px);
    }

    .contact-panel h2 {
      max-width: 18ch;
    }

    .contact-panel .lead {
      margin-top: 16px;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .company-layout {
      display: grid;
      grid-template-columns: minmax(0, 50%) minmax(220px, 27%);
      justify-content: center;
      column-gap: clamp(24px, 5vw, 60px);
      row-gap: 8px;
      align-items: start;
    }

    [data-od-id="contact-web-link"] {
      grid-column: 2;
      justify-self: center;
      align-self: start;
      margin-top: 0;
    }

    #features,
    [data-od-id="digital-expression-section"],
    [data-od-id="creation-flow-section"],
    [data-od-id="reasons-section"],
    [data-od-id="voices-section"],
    #materials,
    [data-od-id="material-cards-section"],
    [data-od-id="operation-section"],
    [data-od-id="developer-section"],
    #pricing,
    [data-od-id="faq-section"],
    #contact {
      min-height: auto;
    }

    .company-copy p {
      margin: 0;
      max-width: 64ch;
      color: var(--fg);
      font-size: 18px;
      line-height: 1.8;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: var(--surface);
      padding: 28px 0;
    }

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

    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }

    .footer-links a:hover {
      color: var(--fg);
      border-color: currentColor;
    }

    @media (max-width: 900px) {
      .header-inner {
        position: relative;
        grid-template-columns: minmax(0, 1fr) auto;
        height: var(--header-row-height);
        min-height: var(--header-row-height);
        align-items: center;
      }

      .nav {
        position: absolute;
        top: var(--header-row-height);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        font-size: 14px;
        background: var(--header-bg);
        box-shadow: 0 8px 14px rgba(0, 35, 85, 0.12);
        white-space: normal;
      }

      .nav.is-open {
        display: grid;
      }

      .brand {
        border-bottom: 0;
      }

      .nav a {
        min-height: 52px;
        height: auto;
        justify-content: flex-start;
        padding: 14px 20px;
        border-left: 0;
        border-right: 0;
      }

      .nav .header-button {
        display: none;
      }

      .mobile-nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding-right: clamp(14px, 3vw, 24px);
      }

      .hero {
        height: auto !important;
      }

      .hero-grid {
        grid-template-rows: auto;
        height: auto !important;
        overflow: visible;
      }

      .hero-grid,
      .section-head,
      .story-grid,
      .materials-overview,
      .message-grid,
      .pricing-grid,
      .price-layout,
      .company-layout,
      .flow-row {
        grid-template-columns: 1fr;
      }

      [data-od-id="contact-web-link"] {
        grid-column: 1;
        justify-self: stretch;
      }

      [data-od-id="developer-section"] .message-grid {
        grid-template-columns: 1fr;
      }

      [data-od-id="operation-flow-register"],
      [data-od-id="operation-flow-activity"],
      [data-od-id="developer-section"] .message-grid {
        width: 100%;
        grid-template-columns: 1fr;
      }

      [data-od-id="operation-flow-register"] .image-card img,
      [data-od-id="operation-flow-activity"] .image-card img,
      [data-od-id="developer-section"] .message-grid .image-card img {
        width: 100% !important;
        height: auto !important;
        min-height: 220px;
        max-height: 360px;
        aspect-ratio: 3 / 2;
      }

      [data-od-id="operation-flow-register"] .flow-text,
      [data-od-id="operation-flow-activity"] .flow-text,
      [data-od-id="developer-section"] .message-copy {
        padding: clamp(22px, 7vw, 32px);
      }

      .feature-grid,
      .reason-grid,
      .card-grid,
      .material-grid,
      .voice-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      h1 {
        max-width: 13ch;
      }

      .hero-grid > [data-od-id="hero-copy"],
      .hero-grid > .hero-actions,
      .hero .media-frame {
        grid-column: 1;
        grid-row: auto;
      }

      .hero-grid > [data-od-id="hero-copy"] {
        width: 100% !important;
        height: auto !important;
        padding: clamp(28px, 7vw, 48px) clamp(24px, 7vw, 56px) 0 !important;
      }

      .hero-grid [data-od-id="hero-title"],
      .hero-grid [data-od-id="hero-lead"] {
        width: 100% !important;
        height: auto !important;
        white-space: normal;
      }

      .hero-grid > .hero-actions {
        width: 100% !important;
        height: auto !important;
        padding: clamp(20px, 5vw, 36px) clamp(24px, 7vw, 56px) clamp(26px, 6vw, 44px) !important;
      }

      .hero .media-frame {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        height: auto !important;
        min-height: 0;
      }

      .hero .media-frame img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 2;
      }

      [data-od-id="digital-expression-section"],
      [data-od-id="materials-section"] {
        height: auto !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
      }

      .story-copy,
      .materials-copy {
        width: 100% !important;
        height: auto !important;
        min-height: 0;
        padding: clamp(30px, 8vw, 48px) clamp(24px, 7vw, 56px) !important;
      }

      .story-copy .dark-section-title,
      .materials-copy .dark-section-title {
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        white-space: normal;
      }

      .story-copy .dark-section-title,
      .materials-copy .dark-section-title {
        font-size: clamp(28px, 3.6vw, 44px);
      }

      .story-grid .image-card,
      .materials-overview .image-card {
        height: auto;
        border: 0;
      }

      .story-grid .image-card img,
      .materials-overview .image-card img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 2;
      }

      .price-card.wide,
      .faq-list {
        width: 100%;
      }

      .price-card .hero-actions .button {
        min-width: 0;
        width: min(100%, 570px);
      }
    }

    @media (max-width: 640px) {
      .container {
        width: 100%;
      }

      .section > .container,
      .hero-grid > [data-od-id="hero-copy"],
      .hero-grid > .hero-actions,
      .story-copy,
      .materials-copy {
        padding-inline: 20px;
      }

      .header-inner {
        display: grid;
      }

      .brand img {
        width: min(220px, 46vw);
      }

      .mobile-nav-actions {
        gap: 8px;
      }

      .mobile-header-button {
        min-height: 38px;
        padding-inline: 12px;
        font-size: 13px;
      }

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

      .menu-toggle {
        width: 40px;
        height: 40px;
      }

      .hero-subtitle,
      h1 {
        font-size: clamp(34px, 10vw, 44px);
      }

      .hero-grid [data-od-id="hero-title"] {
        font-size: clamp(34px, 11vw, 44px) !important;
      }

      .hero-grid [data-od-id="hero-lead"] {
        font-size: 18px !important;
      }

      .section-head.centered h2 {
        font-size: clamp(24px, 7vw, 32px);
      }

      [data-od-id="features-title"] {
        white-space: normal !important;
      }

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

      .reason-image {
        width: 75%;
        min-height: 143px;
        justify-self: end;
      }

      .reason-image img {
        min-height: 143px;
        aspect-ratio: 3 / 2;
      }

      .hero-subtitle {
        max-width: 100%;
        white-space: normal;
      }

      .hero-grid > .hero-actions .button,
      .contact-actions .button,
      .voice-cta .button {
        width: 100%;
      }

      [data-od-id="operation-flow-register"],
      [data-od-id="operation-flow-activity"],
      [data-od-id="developer-section"] .message-grid {
        border-radius: 0;
      }

      [data-od-id="operation-flow-register"] .image-card img,
      [data-od-id="operation-flow-activity"] .image-card img,
      [data-od-id="developer-section"] .message-grid .image-card img {
        min-height: 0;
        max-height: none;
        aspect-ratio: 4 / 3;
      }

      .price {
        font-size: clamp(46px, 15vw, 64px);
      }

      .price-layout,
      .price-main {
        min-width: 0;
      }

      .footer-inner {
        display: grid;
      }
    }

    @media (max-width: 380px) {
      .brand {
        padding-right: 4px;
        padding-left: 10px;
      }

      .brand img {
        width: min(190px, 40vw);
      }

      .mobile-nav-actions {
        gap: 6px;
        padding-right: 10px;
      }

      .mobile-header-button {
        padding-inline: 10px;
        font-size: 12px;
      }
    }
