:root {
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f8fbff;
        --text: #142033;
        --muted: #5f6b80;
        --line: #d9e3f0;
        --placeholder: #cfd6e0;
        --primary: #0f4c81;
        --primary-dark: #0a3255;
        --accent: #f08a24;
        --accent-soft: #fff1e4;
        --shadow: 0 20px 48px rgba(16, 42, 67, 0.12);
        --radius: 24px;
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        color: var(--text);
        background: linear-gradient(180deg, #edf3fb 0, #f7f9fc 180px, #f4f7fb 100%);
        font-family: 'Noto Sans JP', sans-serif;
        line-height: 1.9;
        font-weight: 400;
      }
      a {
        color: inherit;
        text-decoration: none;
        transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      }
      header,
      section,
      footer {
        width: min(1120px, calc(100% - 32px));
        margin: 0 auto;
      }
      header {
        position: sticky;
        top: 0;
        z-index: 30;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 18px 0;
        background: rgba(244, 247, 251, 0.82);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 10px 30px rgba(18, 36, 61, 0.08);
      }
      .brand {
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 0.04em;
        white-space: nowrap;
        color: var(--primary-dark);
      }
      .nav {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
      }
      .nav a {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(217, 227, 240, 0.95);
      }
      .nav a:hover {
        color: var(--primary);
        background: #fff;
        transform: translateY(-1px);
      }
      .menu-icon {
        display: none;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 12px 24px rgba(15, 76, 129, 0.24);
      }
      .section {
        padding: 84px 0;
      }
      .section:first-of-type {
        padding-top: 40px;
      }
      .eyebrow {
        display: table;
        width: auto;
        max-width: none;
        margin: 0 auto 10px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.16em;
        color: var(--primary);
        text-transform: uppercase;
        text-align: center;
      }
      h1,
      h2,
      h3 {
        margin: 0 0 18px;
        line-height: 1.35;
        color: var(--primary-dark);
      }
      h1 {
        font-size: clamp(36px, 5vw, 62px);
        font-weight: 900;
      }
      h2 {
        font-size: clamp(30px, 3vw, 42px);
        font-weight: 900;
      }
      h3 {
        font-size: clamp(22px, 2vw, 26px);
        font-weight: 700;
      }
      p {
        margin: 0 0 16px;
        max-width: 72ch;
      }
      section strong {
        color: var(--accent);
        font-weight: 700;
      }
      .lead {
        font-size: 21px;
        font-weight: 500;
        color: var(--primary-dark);
      }
      .placeholder {
        background: linear-gradient(135deg, #d7dce4 0, #bcc6d3 100%);
        border: 1px dashed rgba(20, 32, 51, 0.26);
        border-radius: 24px;
        color: #314056;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
        font-weight: 700;
        letter-spacing: 0.03em;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
      }
      .media-photo {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 24px;
        background: #dfe6ef;
      }
      .ratio-16-9 {
        aspect-ratio: 16 / 9;
      }
      .ratio-4-3 {
        aspect-ratio: 4 / 3;
      }
      .fv {
        padding-bottom: 54px;
      }
      .fv-visual {
        position: relative;
        overflow: hidden;
        border-radius: 36px;
        background: linear-gradient(135deg, #184e83 0, #113254 60%, #081423 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
      }
      .fv-visual.placeholder {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        color: #fff;
      }
      .fv-visual::before,
      .fv-visual::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
      }
      .fv-visual::before {
        width: 38vw;
        height: 38vw;
        top: -16vw;
        right: -8vw;
      }
      .fv-visual::after {
        width: 18vw;
        height: 18vw;
        bottom: -6vw;
        left: -4vw;
      }
      .fv-label {
        position: absolute;
        top: 18px;
        left: 18px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        z-index: 2;
      }
      .fv-copy {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
        z-index: 1;
      }
      .fv-copy-inner {
        max-width: 780px;
        padding: 42px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        box-shadow: 0 18px 42px rgba(8, 20, 35, 0.22);
      }
      .fv-copy .eyebrow,
      .fv-copy p {
        color: rgba(255, 255, 255, 0.9);
      }
      .fv-copy .lead {
        color: #fff;
      }
      .fv-copy h1 {
        color: #fff;
      }
      .fv-copy h1 span {
        display: block;
      }
      .fv-copy strong {
        color: #ffd8a9;
      }
      .hero-actions {
        display: flex;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
        margin-top: 26px;
      }
      .hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 286px;
        min-height: 68px;
        padding: 16px 28px;
        border-radius: 999px;
        font-size: clamp(17px, 1.8vw, 20px);
        font-weight: 700;
        letter-spacing: 0.02em;
        box-shadow: 0 18px 34px rgba(5, 15, 26, 0.2);
      }
      .hero-btn--tel {
        background: #fff;
        color: var(--primary-dark);
      }
      .hero-btn--contact {
        background: linear-gradient(135deg, #f5a341 0, var(--accent) 100%);
        color: #fff;
      }
      .slider-section {
        padding-top: 28px;
      }
      .slider-marquee {
        overflow: hidden;
        padding: 10px 0;
        mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
      }
      .slider-grid {
        display: flex;
        width: max-content;
        will-change: transform;
        animation: slider-marquee 28s linear infinite;
      }
      .slider-group {
        display: flex;
        gap: 18px;
        flex-shrink: 0;
        padding-right: 18px;
      }
      .slider-group .placeholder,
      .slider-group .media-photo {
        flex: 0 0 clamp(180px, 19vw, 220px);
        width: clamp(180px, 19vw, 220px);
        min-height: clamp(140px, 15vw, 180px);
        box-shadow: var(--shadow);
      }
      .fv-visual > .media-photo {
        height: 100%;
        border-radius: 36px;
      }
      @keyframes slider-marquee {
        from {
          transform: translate3d(0, 0, 0);
        }
        to {
          transform: translate3d(-50%, 0, 0);
        }
      }
      .cards-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
      }
      .card {
        position: relative;
        overflow: hidden;
        padding: 28px;
        border-radius: var(--radius);
        border: 1px solid rgba(217, 227, 240, 0.98);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow);
      }
      .card::before {
        content: '';
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
      }
      .welcome-item {
        min-height: 100%;
        display: grid;
        align-content: start;
        gap: 8px;
      }
      .welcome-item h3 {
        display: grid;
        place-items: center;
        width: 60px;
        height: 60px;
        margin-bottom: 6px;
        border-radius: 50%;
        background: var(--accent-soft);
        color: var(--primary-dark);
        font-size: 18px;
      }
      .zigzag {
        display: grid;
        gap: 32px;
        margin-top: 30px;
      }
      .zigzag-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 32px;
        align-items: center;
        padding: 32px;
        border-radius: 30px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95));
        box-shadow: var(--shadow);
      }
      .zigzag-item:nth-child(even) .zigzag-media {
        order: 2;
      }
      .zigzag-item:nth-child(even) .zigzag-body {
        order: 1;
      }
      .section-visual,
      .member-card .placeholder,
      .member-card .media-photo,
      .zigzag-media .placeholder,
      .zigzag-media .media-photo {
        box-shadow: var(--shadow);
      }
      .cta {
        border: none;
        background: linear-gradient(135deg, #143f69 0, #0b2743 100%);
        padding: 34px 28px;
        border-radius: 24px;
        box-shadow: var(--shadow);
      }
      .cta .eyebrow,
      .cta h2 {
        color: #fff;
      }
      .cta-inner {
        display: grid;
        gap: 24px;
        justify-items: center;
        text-align: center;
      }
      .cta-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 220px;
        min-height: 58px;
        padding: 14px 22px;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 700;
        letter-spacing: 0.02em;
      }
      .cta-actions .btn:first-child {
        background: #fff;
        color: var(--primary-dark);
        box-shadow: 0 14px 28px rgba(5, 15, 26, 0.18);
      }
      .cta-actions .btn:last-child {
        background: linear-gradient(135deg, #f5a341 0, var(--accent) 100%);
        color: #fff;
        box-shadow: 0 14px 28px rgba(240, 138, 36, 0.28);
      }
      .btn:hover,
      button:hover {
        transform: translateY(-2px);
      }
      .card-visual {
        margin-bottom: 18px;
      }
      .member-card {
        display: grid;
        align-content: start;
        gap: 16px;
      }
      .member-card .placeholder {
        margin-bottom: 0;
      }
      .timeline {
        overflow: hidden;
        border-radius: 30px;
        background: linear-gradient(180deg, #ffffff, #f7fbff);
        box-shadow: var(--shadow);
      }
      .timeline-row {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 18px;
        align-items: start;
        padding: 20px 24px;
        border-top: 1px solid var(--line);
      }
      .timeline-row:first-child {
        border-top: none;
      }
      .time {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 96px;
        padding: 8px 14px;
        border-radius: 999px;
        background: #eef5ff;
        border: 1px solid #d5e3f6;
        color: var(--primary-dark);
        font-weight: 700;
      }
      .section-visual {
        margin-bottom: 24px;
      }
      #about > .eyebrow,
      #about > h2,
      #about > p,
      #about > .section-visual,
      #work > .eyebrow,
      #work > h2,
      #work > p,
      #closing > .eyebrow,
      #closing > h2,
      #closing > .section-visual,
      #closing > .summary-box {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
      }
      .summary-box {
        padding: 32px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow);
      }
      .job-spec {
        overflow: hidden;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
      }
      .job-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        border-top: 1px solid #e2eaf4;
      }
      .job-row:first-child {
        border-top: none;
      }
      .job-row dt,
      .job-row dd {
        margin: 0;
        padding: 22px 24px;
      }
      .job-row dt {
        background: #f7faff;
        border-right: 1px solid #e2eaf4;
        color: var(--primary-dark);
        font-weight: 700;
      }
      .job-row dd {
        background: #fff;
      }
      .job-detail-line {
        display: block;
        margin-top: 6px;
      }
      .job-detail-line:first-child {
        margin-top: 0;
      }
      .contact-box {
        padding: 32px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
      }
      .form-grid {
        display: grid;
        gap: 20px;
      }
      label {
        display: block;
        margin-bottom: 8px;
        color: var(--primary-dark);
        font-weight: 700;
      }
      input,
      textarea {
        width: 100%;
        border: 1px solid #ced9e8;
        border-radius: 16px;
        padding: 16px 18px;
        font: inherit;
        background: #fbfdff;
        color: var(--text);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
      }
      input:focus,
      textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
      }
      textarea {
        min-height: 160px;
        resize: vertical;
      }
      .submit-wrap {
        margin-top: 14px;
      }
      button {
        padding: 16px 28px;
        border: none;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        font: inherit;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 16px 30px rgba(15, 76, 129, 0.25);
      }
      footer {
        padding: 48px 0 72px;
      }
      .footer-grid {
        display: grid;
        gap: 10px;
        padding: 28px;
        border-radius: 24px;
        border: 1px solid rgba(217, 227, 240, 0.95);
        background: rgba(255, 255, 255, 0.78);
        box-shadow: var(--shadow);
        color: var(--muted);
        font-size: 14px;
      }
      .spacer-top {
        margin-top: 24px;
      }
      @media (max-width: 960px) {
        .cards-3 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .zigzag-item {
          grid-template-columns: 1fr;
        }
        .zigzag-item:nth-child(even) .zigzag-media,
        .zigzag-item:nth-child(even) .zigzag-body {
          order: initial;
        }
        .job-row {
          grid-template-columns: 1fr;
        }
        .job-row dt {
          border-right: none;
          border-bottom: 1px solid #e2eaf4;
        }
      }
      @media (max-width: 1024px) {
        body {
          font-size: 18px;
        }
        .eyebrow {
          font-size: 14px;
        }
        h2 {
          font-size: 30px;
          line-height: 1.4;
        }
        h3 {
          font-size: 24px;
          line-height: 1.5;
        }
        p,
        li,
        dd,
        dt,
        label,
        input,
        textarea,
        button {
          font-size: 17px;
          line-height: 1.85;
        }
        .nav {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          display: grid;
          gap: 8px;
          padding: 14px;
          background: rgba(255, 255, 255, 0.98);
          border: 1px solid var(--line);
          border-radius: 24px;
          box-shadow: var(--shadow);
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-12px);
          transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        }
        header.is-open .nav,
        header:focus-within .nav {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
        }
        .nav a {
          width: 100%;
          justify-content: center;
          text-align: center;
          padding: 14px 16px;
          font-size: 16px;
        }
        .menu-icon {
          display: inline-flex;
        }
        #welcome .cards-3,
        #flow .cards-3,
        #appeal .cards-3,
        #members .cards-3 {
          grid-template-columns: 1fr !important;
        }
        #welcome .welcome-item,
        #flow .card,
        #appeal .card,
        #members .member-card {
          display: flex !important;
          flex-direction: column !important;
        }
        #work .zigzag {
          display: block !important;
        }
        #work .zigzag-item {
          display: flex !important;
          flex-direction: column !important;
          grid-template-columns: 1fr !important;
          gap: 18px !important;
        }
        #work .zigzag-media {
          order: 1 !important;
          width: 100% !important;
        }
        #work .zigzag-body {
          order: 2 !important;
          width: 100% !important;
        }
        #flow .card .card-visual,
        #appeal .card .card-visual,
        #members .member-card .media-photo {
          order: 1 !important;
          width: 100% !important;
          margin-bottom: 14px;
        }
        #flow .card h3,
        #flow .card p,
        #appeal .card h3,
        #appeal .card p,
        #members .member-card h3,
        #members .member-card p {
          order: 2;
        }
      }
      @media (max-width: 768px) {
        header,
        section,
        footer {
          width: min(100%, calc(100% - 24px));
        }
        body {
          font-size: 18px;
        }
        header {
          padding: 14px 0;
        }
        .brand {
          font-size: 20px;
          letter-spacing: 0.02em;
        }
        .section {
          padding: 56px 0;
        }
        .nav {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          display: grid;
          gap: 8px;
          padding: 14px;
          background: rgba(255, 255, 255, 0.98);
          border: 1px solid var(--line);
          border-radius: 24px;
          box-shadow: var(--shadow);
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-12px);
          transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        }
        header.is-open .nav,
        header:focus-within .nav {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
        }
        .nav a {
          width: 100%;
          justify-content: center;
          text-align: center;
          padding: 14px 16px;
          font-size: 16px;
        }
        .menu-icon {
          display: inline-flex;
          width: 52px;
          height: 52px;
          font-size: 14px;
        }
        .eyebrow {
          font-size: 14px;
          margin-bottom: 12px;
        }
        h1 {
          font-size: 34px;
          line-height: 1.3;
        }
        h2 {
          font-size: 27px;
          line-height: 1.4;
        }
        h3 {
          font-size: 22px;
          line-height: 1.5;
        }
        p,
        li,
        dd,
        dt,
        label,
        input,
        textarea,
        button {
          font-size: 17px;
          line-height: 1.85;
        }
        .fv {
          padding-bottom: 36px;
        }
        .fv-visual,
        .fv-visual.ratio-16-9 {
          display: block;
          aspect-ratio: auto !important;
          min-height: auto;
          overflow: hidden;
        }
        .fv-visual > .media-photo,
        .fv-visual > .media-photo.ratio-16-9 {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center;
          border-radius: inherit;
          z-index: 0;
        }
        .fv-copy {
          position: relative;
          inset: auto;
          display: block;
          width: 100%;
          padding: 20px 14px 22px;
          text-align: center;
          z-index: 1;
        }
        .fv-copy-inner {
          width: 100%;
          max-width: none;
          margin: 0;
          padding: 68px 18px 24px;
        }
        .fv-copy h1 {
          margin-bottom: 16px;
        }
        .fv-copy h1 span[style] {
          font-size: clamp(28px, 8.2vw, 34px) !important;
          line-height: 1.28 !important;
        }
        .fv-copy p,
        .fv-copy .lead {
          margin-bottom: 14px;
        }
        .fv-copy p span[style] {
          font-size: 17px !important;
          line-height: 1.75 !important;
        }
        .lead {
          font-size: 19px;
          line-height: 1.7;
        }
        .hero-actions {
          gap: 12px;
          margin-top: 18px;
        }
        .hero-btn {
          width: 100%;
          min-width: 0;
          min-height: 58px;
          padding: 14px 18px;
          font-size: 16px;
        }
        .slider-group .placeholder,
        .slider-group .media-photo {
          flex: 0 0 160px;
          width: 160px;
          min-height: 120px;
        }
        .cards-3 {
          grid-template-columns: 1fr;
          gap: 18px;
        }
        .card,
        .zigzag-item,
        .timeline,
        .contact-box,
        .summary-box {
          border-radius: 22px;
        }
        .card,
        .zigzag-item,
        .contact-box,
        .summary-box {
          padding: 22px;
        }
        .cta-actions {
          width: 100%;
          flex-direction: column;
        }
        .btn {
          width: 100%;
        }
        .timeline-row {
          grid-template-columns: 1fr;
          gap: 10px;
          padding: 16px 18px;
        }
        .job-row dt,
        .job-row dd {
          padding: 16px 18px;
        }
        #work .zigzag {
          display: block !important;
        }
        #work .zigzag-item {
          display: flex !important;
          flex-direction: column !important;
          gap: 18px !important;
          grid-template-columns: 1fr !important;
          margin-bottom: 18px;
        }
        #work .zigzag-item:last-child {
          margin-bottom: 0;
        }
        #work .zigzag-media {
          order: 1 !important;
          width: 100% !important;
        }
        #work .zigzag-body {
          order: 2 !important;
          width: 100% !important;
        }
        #flow .cards-3,
        #appeal .cards-3,
        #members .cards-3 {
          display: grid !important;
          grid-template-columns: 1fr !important;
          gap: 18px !important;
        }
        #flow .card,
        #appeal .card,
        #members .member-card {
          display: flex !important;
          flex-direction: column !important;
          gap: 14px !important;
        }
        #flow .card .card-visual,
        #appeal .card .card-visual,
        #members .member-card .media-photo {
          order: 1 !important;
          width: 100% !important;
          align-self: stretch;
        }
        #flow .card h3,
        #flow .card p,
        #appeal .card h3,
        #appeal .card p,
        #members .member-card h3,
        #members .member-card p {
          order: 2;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
      }

/* deployment additions */
.form-status {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(240, 138, 36, 0.32);
  background: #fff8f1;
  color: #7a3d00;
}
.form-status ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
}
.form-note {
  margin: 0 0 18px;
  color: var(--muted);
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.submit-wrap button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  justify-items: center;
  padding: 32px 16px;
  overflow-x: hidden;
}
.thanks-card {
  width: min(720px, calc(100vw - 32px));
  max-width: 720px;
  margin-inline: auto;
  padding: 36px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 227, 240, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}
.thanks-card h1 {
  margin-bottom: 22px;
  font-size: clamp(22px, 6.2vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.thanks-card p {
  margin-inline: auto;
}
.thanks-actions .btn {
  background: linear-gradient(135deg, #f5a341 0, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 138, 36, 0.28);
}
.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 480px) {
  .thanks-page {
    padding: 24px 16px;
  }
  .thanks-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    padding: 30px 18px;
  }
  .thanks-card h1 {
    font-size: clamp(20px, 5.8vw, 28px);
    letter-spacing: 0;
  }
  .thanks-actions .btn {
    width: 100%;
  }
}
