    :root {
      color-scheme: light;
      --ink: #102026;
      --muted: #52666d;
      --line: rgba(16, 32, 38, 0.14);
      --panel: rgba(255, 255, 255, 0.84);
      --paper: #f6f8f5;
      --teal: #00a6b4;
      --teal-dark: #047783;
      --coral: #ff6b5f;
      --gold: #c89628;
      --shadow: 0 22px 70px rgba(31, 49, 54, 0.18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        linear-gradient(120deg, rgba(0, 166, 180, 0.10), transparent 34%),
        linear-gradient(260deg, rgba(255, 107, 95, 0.12), transparent 38%),
        var(--paper);
    }

    a {
      color: inherit;
    }

    .site {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .nav {
      width: min(1120px, calc(100% - 36px));
      margin: 0 auto;
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0;
      text-decoration: none;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(16, 32, 38, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.68);
    }

    .nav-link {
      min-height: 42px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.62);
      font-weight: 700;
      text-decoration: none;
    }

	    .hero {
	      width: min(1120px, calc(100% - 36px));
	      margin: 0 auto;
	      flex: 1;
	      display: grid;
	      grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
	      gap: clamp(34px, 6vw, 76px);
	      align-items: center;
	      padding: clamp(18px, 5vw, 54px) 0 54px;
	    }

	    .hero > div {
	      min-width: 0;
	    }

    .eyebrow {
      width: fit-content;
      margin: 0 0 18px;
      padding: 8px 11px;
      border: 1px solid rgba(4, 119, 131, 0.24);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--teal-dark);
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

	    h1 {
	      margin: 0;
	      max-width: 100%;
	      font-size: clamp(3rem, 4.7vw, 4.15rem);
	      line-height: 0.95;
	      letter-spacing: 0;
	      overflow-wrap: anywhere;
	    }

	    h1 span {
	      display: block;
	    }

	    h1 span:last-child {
	      color: var(--teal-dark);
	    }

    .subtitle {
      max-width: 620px;
      margin: 28px 0 0;
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.35rem);
      line-height: 1.55;
    }

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

    .button {
      min-height: 50px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 800;
      text-decoration: none;
    }

    .button-primary {
      color: #ffffff;
      background: var(--teal-dark);
      box-shadow: 0 14px 34px rgba(4, 119, 131, 0.26);
    }

    .button-secondary {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.66);
    }

    .stats {
      margin: 36px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      list-style: none;
    }

    .stats li {
      min-height: 92px;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.62);
    }

    .stats strong {
      display: block;
      font-size: 1.5rem;
      line-height: 1;
    }

    .stats span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.91rem;
      line-height: 1.35;
    }

    .visual {
      position: relative;
      min-height: 430px;
      display: grid;
      align-items: end;
    }

    .visual picture,
    .visual img {
      width: 100%;
      display: block;
      border-radius: 8px;
    }

    .visual img {
      aspect-ratio: 1823 / 863;
      object-fit: cover;
      box-shadow: var(--shadow);
    }

    .signal {
      position: absolute;
      right: min(7vw, 38px);
      bottom: -24px;
      width: min(310px, 78%);
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 48px rgba(31, 49, 54, 0.15);
    }

    .signal span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .signal strong {
      display: block;
      margin-top: 7px;
      font-size: 1.1rem;
      line-height: 1.3;
    }

    .contact-band {
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.5);
    }

    .contact {
      width: min(1120px, calc(100% - 36px));
      margin: 0 auto;
      padding: 70px 0;
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
      gap: clamp(24px, 6vw, 86px);
      align-items: start;
    }

    .contact h2 {
      margin: 0;
      font-size: clamp(2rem, 5vw, 4.4rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .contact-copy {
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 1.06rem;
      line-height: 1.65;
    }

    form {
      padding: clamp(20px, 4vw, 30px);
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      box-shadow: 0 18px 58px rgba(31, 49, 54, 0.12);
    }

    label {
      display: block;
      margin-bottom: 14px;
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 800;
    }

    input,
    textarea {
      width: 100%;
      margin-top: 7px;
      padding: 13px 14px;
      border: 1px solid rgba(16, 32, 38, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.82);
      color: var(--ink);
      font: inherit;
      font-weight: 500;
    }

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

    input:focus,
    textarea:focus {
      outline: 3px solid rgba(0, 166, 180, 0.22);
      border-color: var(--teal);
    }

    .hidden-field {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .notice {
      margin: 0 0 16px;
      padding: 13px 14px;
      border-radius: 8px;
      line-height: 1.45;
    }

    .notice-success {
      border: 1px solid rgba(4, 119, 131, 0.26);
      background: rgba(0, 166, 180, 0.10);
      color: var(--teal-dark);
    }

    .notice-error {
      border: 1px solid rgba(255, 107, 95, 0.32);
      background: rgba(255, 107, 95, 0.10);
      color: #943226;
    }

    .submit {
      width: 100%;
      min-height: 52px;
      margin-top: 4px;
      border: 0;
      border-radius: 8px;
      background: var(--ink);
      color: #ffffff;
      font: inherit;
      font-weight: 900;
      cursor: pointer;
    }

    .fine-print {
      margin: 13px 0 0;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.5;
    }

    footer {
      width: min(1120px, calc(100% - 36px));
      margin: 0 auto;
      padding: 22px 0 34px;
      color: var(--muted);
      font-size: 0.9rem;
    }

	    @media (max-width: 1320px) {
	      .hero,
	      .contact {
	        grid-template-columns: 1fr;
	      }

      .hero {
        padding-top: 14px;
      }

	      h1 {
	        max-width: 11ch;
	        font-size: clamp(3.3rem, 12vw, 6.8rem);
	      }

	      .visual {
	        min-height: 0;
	      }

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

	    @media (min-width: 861px) and (max-width: 1320px) {
	      .visual {
	        max-width: 760px;
	      }
	    }

    @media (max-width: 560px) {
      .nav {
        width: min(100% - 24px, 1120px);
      }

      .hero,
      .contact,
      footer {
        width: min(100% - 24px, 1120px);
      }

      .nav-link {
        padding: 0 12px;
      }

      .brand span:last-child {
        max-width: 52vw;
        overflow-wrap: anywhere;
      }

      .actions {
        display: grid;
      }

      .button {
        width: 100%;
      }

      .signal {
        position: static;
        width: 100%;
        margin-top: 12px;
      }
    }
