:root {
      --bg: #faf7f2;
      --surface: #ffffff;
      --ink: #1f2933;
      --muted: #6b625a;
      --line: #e5dbce;
      --accent: #a8552a;
      --accent-dark: #7c351b;
      --soft: #f4ede5;
      --radius: 8px;
      --max: 1080px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
    }

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

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

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    h3,
    .brand {
      font-family: "Plus Jakarta Sans", "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
    }

    h1 {
      max-width: 650px;
      margin-bottom: 18px;
      font-size: clamp(2rem, 3.4vw, 3.05rem);
      line-height: 1.08;
      letter-spacing: -0.01em;
    }

    h2 {
      margin-bottom: 12px;
      font-size: clamp(1.5rem, 2.2vw, 2.05rem);
      line-height: 1.16;
      letter-spacing: -0.01em;
    }

    h3 {
      margin-bottom: 8px;
      font-size: 1.05rem;
      line-height: 1.3;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(229, 219, 206, 0.92);
      background: rgba(250, 247, 242, 0.96);
      backdrop-filter: blur(12px);
    }

    .nav {
      display: flex;
      max-width: var(--max);
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      white-space: nowrap;
    }

    .brand-mark {
      display: block;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .brand-copy {
      display: grid;
      gap: 2px;
      line-height: 1;
    }

    .brand-name {
      color: var(--ink);
      font-size: 1.03rem;
      font-weight: 800;
      letter-spacing: -0.025em;
    }

    .brand-name span {
      color: var(--accent-dark);
    }

    .brand-line {
      color: var(--muted);
      font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
      font-size: 0.72rem;
      font-weight: 650;
      letter-spacing: 0;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #3f3a35;
      font-size: 0.94rem;
      font-weight: 650;
    }

    .nav-links a:hover {
      color: var(--accent-dark);
    }

    .button {
      display: inline-flex;
      min-height: 42px;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: var(--radius);
      padding: 0 17px;
      cursor: pointer;
      font-weight: 760;
      white-space: nowrap;
    }

    .button-primary {
      background: var(--accent);
      color: white;
    }

    .button-primary:hover {
      background: var(--accent-dark);
    }

    .button:disabled {
      cursor: wait;
      opacity: 0.7;
    }

    .button-secondary {
      border-color: var(--line);
      background: white;
      color: var(--ink);
    }

    .button-secondary:hover {
      border-color: #d2c3b3;
      color: var(--accent-dark);
    }

    main {
      overflow: hidden;
    }

    section {
      scroll-margin-top: 84px;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px;
    }

    .section {
      padding: 72px 0;
    }

    .section-line {
      border-top: 1px solid var(--line);
    }

    .hero {
      padding: 62px 0 44px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
      gap: 54px;
      align-items: center;
    }

    .lead {
      max-width: 640px;
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .hero-actions,
    .form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .trust-note {
      max-width: 620px;
      margin: 18px 0 0;
      color: #5f574f;
      font-size: 0.95rem;
    }

    .mvp-note {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .example-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 24px;
    }

    .example-panel h2 {
      margin-bottom: 18px;
      font-size: 1.22rem;
    }

    .example-list {
      display: grid;
      gap: 13px;
      margin: 0;
    }

    .example-row {
      display: grid;
      grid-template-columns: 86px minmax(0, 1fr);
      gap: 12px;
      padding-bottom: 13px;
      border-bottom: 1px solid var(--line);
    }

    .example-row:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .example-row dt {
      color: var(--muted);
      font-weight: 720;
    }

    .example-row dd {
      margin: 0;
      color: var(--ink);
      font-weight: 650;
    }

    .reason-strip {
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
      gap: 34px;
      align-items: start;
      margin-top: 46px;
      padding-top: 30px;
      border-top: 1px solid var(--line);
    }

    .reason-strip p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .plain-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 22px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #2f2924;
    }

    .plain-list li {
      position: relative;
      padding-left: 18px;
    }

    .plain-list li::before {
      content: "";
      position: absolute;
      top: 0.68em;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .section-heading {
      max-width: 740px;
      margin-bottom: 30px;
    }

    .section-heading p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      counter-reset: steps;
    }

    .step {
      counter-increment: steps;
      padding-top: 18px;
      border-top: 2px solid var(--line);
    }

    .step::before {
      content: counter(steps);
      display: block;
      margin-bottom: 14px;
      color: var(--accent-dark);
      font-weight: 850;
    }

    .step p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .intake-wrap {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
      gap: 42px;
      align-items: start;
    }

    .intake-copy p {
      color: var(--muted);
    }

    .intake-copy ul {
      margin: 22px 0 0;
      padding-left: 19px;
      color: #3f3a35;
    }

    .intake-copy li + li {
      margin-top: 8px;
    }

    .form-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 26px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

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

    label {
      color: #2f2924;
      font-size: 0.91rem;
      font-weight: 730;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid #d6cabc;
      border-radius: var(--radius);
      background: white;
      color: var(--ink);
      padding: 11px 12px;
      outline: none;
    }

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

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(168, 85, 42, 0.16);
    }

    .form-note {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .submit-note {
      display: none;
      margin: 16px 0 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--soft);
      padding: 12px 14px;
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .submit-note.is-visible {
      display: block;
    }

    .submit-note-success {
      border-color: #b7d4c3;
      background: #f1fbf4;
      color: #24523a;
    }

    .submit-note-error {
      border-color: #e0b7ad;
      background: #fff3ef;
      color: #8a321f;
    }

    .talent-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
      gap: 42px;
      align-items: start;
    }

    .scripting-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .scripting-list li {
      border-bottom: 1px solid var(--line);
      padding-bottom: 14px;
    }

    .scripting-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .scripting-list strong {
      display: block;
      margin-bottom: 3px;
    }

    .scripting-list span {
      color: var(--muted);
    }

    .future-note {
      margin-top: 24px;
      color: var(--muted);
    }

    .freelancer-cta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 26px;
    }

    .freelancer-cta p {
      margin-bottom: 0;
      color: var(--muted);
    }

    dialog {
      width: min(680px, calc(100% - 32px));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0;
      color: var(--ink);
    }

    dialog::backdrop {
      background: rgba(31, 41, 51, 0.46);
    }

    .dialog-inner {
      background: var(--surface);
      padding: 24px;
    }

    .dialog-head {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .dialog-head p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .icon-button {
      display: inline-flex;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: white;
      color: var(--ink);
      cursor: pointer;
      font-size: 1.2rem;
      line-height: 1;
    }

    .faq-list {
      display: grid;
      gap: 10px;
      max-width: 820px;
    }

    details {
      border-bottom: 1px solid var(--line);
      padding: 18px 0;
    }

    summary {
      cursor: pointer;
      color: var(--ink);
      font-weight: 760;
    }

    details p {
      margin: 10px 0 0;
      color: var(--muted);
    }

    .footer {
      border-top: 1px solid var(--line);
      background: #201812;
      color: white;
      padding: 30px 0;
    }

    .footer .brand {
      color: white;
    }

    .footer .brand-name {
      color: white;
    }

    .footer .brand-name span {
      color: #d69b78;
    }

    .footer .brand-line {
      color: #c7b7a7;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: #f1e7dd;
      font-size: 0.94rem;
      font-weight: 650;
    }

    .disclaimer {
      margin: 8px 0 0;
      color: #c7b7a7;
      font-size: 0.86rem;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .reason-strip,
      .intake-wrap,
      .talent-layout {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 640px) {
      .nav {
        padding: 12px 18px;
      }

      .nav-right {
        gap: 0;
      }

      .site-header .button {
        min-height: 38px;
        padding: 0 13px;
      }

      .container {
        padding: 0 18px;
      }

      .hero {
        padding: 44px 0 34px;
      }

      .section {
        padding: 58px 0;
      }

      .hero-grid {
        gap: 32px;
      }

      .hero-actions .button,
      .form-actions .button,
      .freelancer-cta .button {
        width: 100%;
      }

      .plain-list,
      .steps,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .example-row {
        grid-template-columns: 1fr;
        gap: 3px;
      }

      .freelancer-cta,
      .footer-inner {
        grid-template-columns: 1fr;
        align-items: start;
        flex-direction: column;
      }

      .form-panel,
      .example-panel,
      .freelancer-cta {
        padding: 22px;
      }
    }
