  /* ── LOGO ── */
  .logo {
    margin-bottom: 48px;
    opacity: 0;
    animation: up 0.7s ease-out 0.1s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo svg, .logo img { height: 38px; width: auto; }
  .logo a {
    font-family: var(--font-editorial);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-hero);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  /* ── STATUS ── */
  .status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: up 0.7s ease-out 0.2s forwards;
  }

  .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2.5s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
  }

  /* ── HEADLINE ── */
  .hl {
    font-family: var(--font-editorial);
    font-weight: 600;
    font-size: clamp(2.6rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    text-align: center;
    max-width: 800px;
    color: var(--text-hero);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
    opacity: 0;
    animation: up 0.8s ease-out 0.3s forwards;
  }

  /* Formula variant: monospace treatment */
  .hl .formula {
    font-family: var(--font-mono);
    font-size: 0.6em;
    letter-spacing: -0.02em;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .hl em {
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
  }

  .hl .zero {
    color: var(--accent);
  }

  /* ── SUBHEADLINE ── */
  .sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 48px;
    opacity: 0;
    animation: up 0.7s ease-out 0.42s forwards;
  }

  /* ── FORM ── */
  .cap {
    width: 100%;
    max-width: 500px;
    opacity: 0;
    animation: up 0.7s ease-out 0.52s forwards;
  }

  /* Handle Contact Form 7 specific structure */
  .cap .wpcf7-form .early_access_form > p,
  .cap-row {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .cap form.wpcf7-form span.wpcf7-not-valid-tip {
    display: none;
  }
  .cap .wpcf7-form early_access_form > p:focus,
  .cap .wpcf7-form early_access_form > p:focus-within,
  .cap-row:focus-within {
    border-color: rgba(141,185,2,0.3);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 12px 40px rgba(0,0,0,0.25);
  }

  /* CF7 often wraps inputs in p tags, we want to flatten this */
  .cap .wpcf7-form > p {
      display: flex;
      flex: 1;
      width: 100%;
      margin: 0;
  }

  /* Style the input */
  .cap .wpcf7-email:-webkit-autofill,
  .cap .wpcf7-email:-webkit-autofill:hover,
  .cap .wpcf7-email:-webkit-autofill:focus,
  .cap .wpcf7-email:focus,
  .cap .wpcf7-email,
  .cap-row input {
    flex: 1;
    padding: 17px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-hero);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    width: 100%;
  }
  /* FORCE override Chrome autofill */
  .cap input:-webkit-autofill,
  .cap input:-webkit-autofill:hover,
  .cap input:-webkit-autofill:focus,
  .cap textarea:-webkit-autofill,
  .cap select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--bg-card) inset !important;
    -webkit-text-fill-color: var(--text-hero) !important;
    caret-color: var(--text-hero);
    border: none !important;
  }

  .cap .wpcf7-email::placeholder,
  .cap-row input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
  }

  /* Style the button */
  .cap .wpcf7-submit,
  .cap-row button {
    padding: 17px 32px;
    background: var(--accent);
    border: none;
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .cap .wpcf7-submit:focus,
  .cap .wpcf7-submit:hover,
  .cap-row button:hover {
    background: var(--accent-hover);
    color: var(--bg-deep);}

  /* Handle CF7 wrapper span */
  .wpcf7-form-control-wrap {
      flex: 1;
      display: flex;
  }

  .cap form.wpcf7-form.invalid .wpcf7-response-output {
    color: #ff0000;
    text-align: center;
    border: 1px solid #ff00001f !important;
  }
  .cap-fine {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
    font-weight: 300;
  }

  /* ── THANK YOU STATE ── */
  .ty {
    display: none;
    text-align: center;
    max-width: 520px;
    width: 100%;
  }

  /* Added for CF7 integration */
  .wpcf7-mail-sent-ok .ty {
      display: block;
  }
  .wpcf7-mail-sent-ok .cap, 
  .wpcf7-mail-sent-ok .hl,
  .wpcf7-mail-sent-ok .sub {
      display: none !important;
  }

  .ty-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 1px solid rgba(141,185,2,0.2);
    margin-bottom: 20px;
    animation: up 0.6s ease-out forwards;
  }

  .ty-check svg {
    width: 24px; height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .ty-hl {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--text-hero);
    margin-bottom: 10px;
    animation: up 0.6s ease-out 0.08s both;
  }

  .ty-sub {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: up 0.6s ease-out 0.15s both;
  }

  .ty-steps {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    animation: up 0.6s ease-out 0.22s both;
  }

  .ty-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    transition: background 0.2s;
  }

  .ty-step:hover { background: var(--bg-card-hover); }

  .ty-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .ty-step strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-hero);
    margin-bottom: 2px;
  }

  .ty-step span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
  }

  .ty-note {
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    animation: up 0.6s ease-out 0.3s both;
  }

  .ty-note a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }

  .ty-note a:hover { color: var(--accent); }

  /* ── COUNTDOWN ── */
  .cd {
    margin-top: 56px;
    text-align: center;
    opacity: 0;
    animation: up 0.7s ease-out 0.6s forwards;
  }

  .cd-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .cd-grid {
    display: inline-flex;
    gap: 4px;
  }

  .cd-b {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 18px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 76px;
  }

  .cd-n {
    font-family: var(--font-editorial);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-hero);
    line-height: 1;
  }

  .cd-u {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
  }

  /* ── DIVIDER ── */
  .div { width: 40px; height: 1px; background: var(--border-hover); margin: 56px auto; opacity: 0; animation: up 0.7s ease-out 0.65s forwards; }

  /* ── PROOF GRID ── */
  .proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: up 0.7s ease-out 0.72s forwards;
  }

  .proof-i {
    background: var(--bg-card);
    padding: 28px 20px;
    text-align: center;
    transition: background 0.25s;
  }

  .proof-i:hover { background: var(--bg-card-hover); }

  .proof-n {
    font-family: var(--font-editorial);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-hero);
    line-height: 1;
    margin-bottom: 4px;
  }

  .proof-t {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .proof-d {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
  }

  /* ── FOOTER ── */
  .ft {
    margin-top: 64px;
    text-align: center;
    opacity: 0;
    animation: up 0.7s ease-out 0.78s forwards;
  }

  .ft p { font-size: 12px; color: var(--text-muted); font-weight: 300; }
  .ft a { color: var(--text-secondary); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.2s; }
  .ft a:hover { color: var(--text-hero); }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    .cap-row,
    .cap .wpcf7-form,
    .cap .wpcf7-form > p { flex-direction: column; }
    
    .cap-row input,
    .cap .wpcf7-email { text-align: center; padding: 16px; }
    
    .cap-row button,
    .cap .wpcf7-submit { padding: 16px; border-top: 1px solid var(--border); }
    
    .proof { grid-template-columns: repeat(2, 1fr); }
    .cd-grid { gap: 3px; }
    .cd-b { min-width: 64px; padding: 12px 14px 10px; }
    .cd-n { font-size: 26px; }
    .hl .formula { font-size: 0.48em; }
  }

  @media (max-width: 400px) {
    .proof { grid-template-columns: 1fr; }
  }
  
  /* CF7 specific overrides to match design */
  .wpcf7-form-control-wrap {
      flex: 1;
      display: flex;
  }
  .wpcf7-spinner {
      position: absolute;
      top: 50%;
      right: 15px;
      margin: 0 !important;
      transform: translateY(-50%);
  }
  @media (max-width: 700px) {
      .wpcf7-spinner {
          top: auto;
          bottom: 10px;
          right: 50%;
          transform: translateX(50%);
      }
  }
  .wpcf7-response-output {
      margin: 20px 0 0 0 !important;
      border: 1px solid var(--border) !important;
      border-radius: 8px;
      font-size: 14px;
      color: var(--text-secondary);
  }
  /* Hide the actual thank you state by default, it will be shown via .wpcf7-mail-sent-ok helper class */


  @media(max-width: 767px){
    .cap .wpcf7-form .early_access_form > p, .cap-row {
      flex-direction: column;
    }
  }