/* ===== FONTS ===== */
    @font-face {
      font-family: 'Clarendon';
      src: url('fonts/Clarendon-Regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Cabinet Grotesk';
      src: url('fonts/CabinetGrotesk-Regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Cabinet Grotesk';
      src: url('fonts/CabinetGrotesk-Bold.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    /* ===== CSS VARIABLES ===== */
    :root {
      --color-charcoal: #0D0B09;
      --color-red: #EC1B34;
      --color-ember: #C44A0A;
      --color-bone: #F0E8DC;
      --color-ash: #6D6F70;
      --font-display: 'Clarendon', 'Rockwell', Georgia, serif;
      --font-body: 'Cabinet Grotesk', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: var(--font-body);
      background-color: var(--color-charcoal);
      color: var(--color-bone);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ===== TEXTURE OVERLAY ===== */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
      opacity: 0.12;
      pointer-events: none;
      mix-blend-mode: overlay;
      z-index: 9999;
    }

    /* ===== LAYOUT ===== */
    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER ===== */
    .header {
      text-align: center;
      padding: 48px 0 24px;
    }
    .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .logo-container img {
      height: 40px;
      width: auto;
    }
    .logo-text {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-bone);
    }

    /* ===== HERO ===== */
    .hero {
      text-align: center;
      padding: 24px 0 48px;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(236, 27, 52, 0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .eyebrow {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-red);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    h1 {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 400;
      line-height: 1.15;
      color: var(--color-bone);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--color-bone);
      opacity: 0.7;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.55;
      position: relative;
      z-index: 1;
    }

    /* ===== PASSWORD SCREEN ===== */
    .password-screen {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      position: relative;
    }
    .password-screen::before {
      content: '';
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(236, 27, 52, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .password-box {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .password-box .logo-container {
      margin-bottom: 32px;
    }
    .password-box .eyebrow {
      margin-bottom: 8px;
    }
    .password-box h1 {
      font-size: 2rem;
      margin-bottom: 32px;
    }
    .password-input-row {
      display: flex;
      gap: 12px;
      justify-content: center;
      max-width: 360px;
      margin: 0 auto;
    }
    .password-input-row input {
      flex: 1;
      padding: 12px 16px;
      background: rgba(240, 232, 220, 0.08);
      border: 1.5px solid var(--color-ash);
      border-radius: 4px;
      color: var(--color-bone);
      font-family: var(--font-body);
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s ease;
    }
    .password-input-row input:focus {
      border-color: var(--color-red);
    }
    .password-input-row input::placeholder {
      color: var(--color-ash);
    }
    .password-error {
      color: var(--color-red);
      font-size: 0.95rem;
      margin-top: 12px;
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .password-error.visible {
      opacity: 1;
    }

    /* ===== CALCULATOR SECTION ===== */
    .calc-section {
      padding: 0 0 48px;
    }
    .calc-card {
      background: rgba(240, 232, 220, 0.04);
      border: 1px solid rgba(240, 232, 220, 0.08);
      border-radius: 8px;
      padding: 40px 36px;
      margin-bottom: 24px;
    }

    /* ===== STEP INDICATOR ===== */
    .step-indicator {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--color-red);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .step-label {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-ash);
    }

    /* ===== QUESTION STYLING ===== */
    .question-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 8px;
      color: var(--color-bone);
    }
    .question-desc {
      font-size: 1.05rem;
      color: var(--color-bone);
      opacity: 0.6;
      margin-bottom: 28px;
      line-height: 1.5;
    }

    /* ===== ZIP CODE INPUT ===== */
    .zip-input-container {
      max-width: 220px;
    }
    .zip-input {
      width: 100%;
      background: rgba(240, 232, 220, 0.06);
      border: 1px solid rgba(240, 232, 220, 0.15);
      border-radius: 8px;
      padding: 16px 20px;
      font-family: var(--font-body);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--color-bone);
      letter-spacing: 0.15em;
      outline: none;
      transition: border-color 0.2s ease;
    }
    .zip-input:focus {
      border-color: var(--color-red);
    }
    .zip-input::placeholder {
      color: var(--color-ash);
      font-weight: 400;
      letter-spacing: 0.05em;
    }

    /* ===== SLIDER STYLING ===== */
    .slider-container {
      margin-bottom: 8px;
    }
    .slider-value-display {
      text-align: center;
      margin-bottom: 20px;
    }
    .slider-value-big {
      font-family: var(--font-display);
      font-size: 2.75rem;
      font-weight: 400;
      color: var(--color-bone);
      line-height: 1;
    }
    .slider-value-unit {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--color-ash);
      margin-top: 4px;
    }

    input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      background: rgba(240, 232, 220, 0.12);
      border-radius: 3px;
      outline: none;
      cursor: pointer;
    }
    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--color-red);
      cursor: pointer;
      border: 2px solid var(--color-bone);
      box-shadow: 0 2px 8px rgba(0,0,0,0.4);
      transition: transform 0.15s ease;
    }
    input[type="range"]::-webkit-slider-thumb:hover {
      transform: scale(1.15);
    }
    input[type="range"]::-moz-range-thumb {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--color-red);
      cursor: pointer;
      border: 2px solid var(--color-bone);
      box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }
    .slider-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--color-ash);
      margin-top: 8px;
    }

    /* ===== CALCULATE BUTTON ===== */
    .btn-primary {
      background-color: var(--color-red);
      color: white;
      text-transform: uppercase;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      padding: 16px 32px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: filter 0.2s ease;
      width: 100%;
      display: block;
      margin-top: 8px;
    }
    .btn-primary:hover {
      filter: brightness(1.1);
    }
    .btn-secondary {
      background: transparent;
      color: var(--color-ember);
      border: 1.5px solid var(--color-ember);
      text-transform: uppercase;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      padding: 14px 28px;
      border-radius: 4px;
      cursor: pointer;
      transition: filter 0.2s ease;
      width: 100%;
      display: block;
    }
    .btn-secondary:hover {
      filter: brightness(1.15);
    }

    /* ===== RESULTS ===== */
    .results-section {
      display: none;
      padding: 0 0 24px;
    }
    .results-section.visible {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Results header */
    .results-header {
      text-align: center;
      padding: 40px 0 32px;
    }
    .results-header .eyebrow {
      margin-bottom: 12px;
    }
    .results-header h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      line-height: 1.15;
      color: var(--color-bone);
      margin-bottom: 12px;
    }
    .results-header p {
      color: var(--color-bone);
      opacity: 0.65;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Comparison cards */
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }
    .compare-card {
      border-radius: 8px;
      padding: 28px 24px;
      text-align: center;
    }
    .compare-card.risk-card {
      background: rgba(236, 27, 52, 0.08);
      border: 1px solid rgba(236, 27, 52, 0.2);
    }
    .compare-card.defense-card {
      background: rgba(196, 74, 10, 0.08);
      border: 1px solid rgba(196, 74, 10, 0.25);
    }
    .compare-card .card-eyebrow {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .compare-card.risk-card .card-eyebrow { color: var(--color-red); }
    .compare-card.defense-card .card-eyebrow { color: var(--color-ember); }
    .compare-card .card-value {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--color-bone);
      line-height: 1;
      margin-bottom: 6px;
    }
    .compare-card .card-label {
      font-size: 0.9rem;
      color: var(--color-ash);
    }

    /* Breakeven box */
    .breakeven-box {
      background: var(--color-red);
      border-radius: 8px;
      padding: 32px 28px;
      text-align: center;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }
    .breakeven-box::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('textures/grain-fine.png');
      background-repeat: repeat;
      opacity: 0.3;
      pointer-events: none;
      mix-blend-mode: overlay;
    }
    .breakeven-box .eyebrow {
      color: rgba(255,255,255,0.8);
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }
    .breakeven-pct {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 400;
      color: white;
      line-height: 1;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }
    .breakeven-label {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.85);
      max-width: 440px;
      margin: 0 auto;
      line-height: 1.45;
      position: relative;
      z-index: 1;
    }

    /* Explanation text */
    .results-explanation {
      background: rgba(240, 232, 220, 0.04);
      border-left: 3px solid var(--color-ember);
      border-radius: 0 8px 8px 0;
      padding: 24px 28px;
      margin-bottom: 32px;
    }
    .results-explanation p {
      font-size: 1.05rem;
      color: var(--color-bone);
      opacity: 0.75;
      line-height: 1.6;
    }
    .results-explanation strong {
      color: var(--color-bone);
      opacity: 1;
    }

    /* ===== HAZARD ZONE TABLE ===== */
    .hazard-zone-section {
      margin-top: 40px;
      padding: 32px;
      background: rgba(13, 11, 9, 0.6);
      border: 1px solid rgba(109, 111, 112, 0.2);
      border-radius: 8px;
      position: relative;
    }
    .hazard-zone-header {
      text-align: center;
      margin-bottom: 24px;
    }
    .hazard-zone-subtitle {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-ash);
      line-height: 1.5;
      max-width: 600px;
      margin: 0 auto;
    }
    .hazard-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .hazard-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--font-body);
      font-size: 0.85rem;
    }
    .hazard-table thead th {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-ash);
      padding: 10px 14px;
      text-align: left;
      border-bottom: 1px solid rgba(109, 111, 112, 0.3);
      white-space: nowrap;
    }
    .hazard-table tbody td {
      padding: 12px 14px;
      color: var(--color-bone);
      opacity: 0.85;
      border-bottom: 1px solid rgba(109, 111, 112, 0.12);
      white-space: nowrap;
    }
    .zone-row {
      transition: background 0.2s ease;
    }
    .zone-row.active-zone {
      background: rgba(236, 27, 52, 0.1);
    }
    .zone-row.active-zone td {
      opacity: 1;
      color: var(--color-bone);
      font-weight: 600;
    }
    .zone-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .zone-moderate {
      background: rgba(109, 111, 112, 0.25);
      color: var(--color-bone);
    }
    .zone-high {
      background: rgba(196, 74, 10, 0.25);
      color: #E8956A;
    }
    .zone-veryhigh {
      background: rgba(236, 27, 52, 0.2);
      color: #EC1B34;
    }
    .zone-row.active-zone .zone-badge {
      box-shadow: 0 0 0 1.5px currentColor;
    }
    .hazard-zone-note {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--color-bone);
      opacity: 0.8;
      text-align: center;
      margin-top: 16px;
      min-height: 1.2em;
    }
    .hazard-zone-note strong {
      color: var(--color-red);
      opacity: 1;
    }
    .hazard-zone-source {
      font-family: var(--font-body);
      font-size: 0.7rem;
      color: var(--color-ash);
      text-align: center;
      margin-top: 8px;
      opacity: 0.7;
    }
    @media (max-width: 600px) {
      .hazard-zone-section { padding: 20px 16px; }
      .hazard-table { font-size: 0.78rem; }
      .hazard-table thead th { font-size: 0.65rem; padding: 8px 10px; }
      .hazard-table tbody td { padding: 10px; }
    }

    /* ===== DIVIDER ===== */
    .section-divider {
      border: none;
      border-top: 1px solid rgba(109, 111, 112, 0.3);
      margin: 8px 0 40px;
    }

    /* ===== FAST FACTS ===== */
    .fast-facts {
      padding: 0 0 40px;
    }
    .fast-facts-header {
      text-align: center;
      margin-bottom: 32px;
    }
    .fast-facts-header h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 400;
      color: var(--color-bone);
    }

    .facts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }
    .fact-card {
      background: rgba(240, 232, 220, 0.04);
      border: 1px solid rgba(240, 232, 220, 0.08);
      border-radius: 8px;
      padding: 24px 20px;
    }
    .fact-stat {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 400;
      color: var(--color-red);
      line-height: 1;
      margin-bottom: 8px;
    }
    .fact-label {
      font-size: 0.95rem;
      color: var(--color-bone);
      opacity: 0.7;
      line-height: 1.4;
    }

    /* Certification badges */
    .cert-row {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(109, 111, 112, 0.2);
    }
    .cert-badge {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-ash);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .cert-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-ember);
      flex-shrink: 0;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 0 0 48px;
    }
    .cta-card {
      background: rgba(196, 74, 10, 0.08);
      border: 1px solid rgba(196, 74, 10, 0.2);
      border-radius: 8px;
      padding: 40px 36px;
      text-align: center;
    }
    .cta-card .eyebrow {
      color: var(--color-ember);
      margin-bottom: 12px;
    }
    .cta-card h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 400;
      color: var(--color-bone);
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .cta-card p {
      color: var(--color-bone);
      opacity: 0.65;
      margin-bottom: 28px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    /* Lead form */
    .lead-form {
      max-width: 420px;
      margin: 0 auto;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .form-row.full {
      grid-template-columns: 1fr;
    }
    .lead-form input,
    .lead-form textarea {
      width: 100%;
      padding: 12px 14px;
      background: rgba(240, 232, 220, 0.06);
      border: 1.5px solid rgba(109, 111, 112, 0.4);
      border-radius: 4px;
      color: var(--color-bone);
      font-family: var(--font-body);
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s ease;
    }
    .lead-form input:focus,
    .lead-form textarea:focus {
      border-color: var(--color-ember);
    }
    .lead-form input::placeholder,
    .lead-form textarea::placeholder {
      color: var(--color-ash);
      font-size: 0.95rem;
    }
    .lead-form textarea {
      resize: vertical;
      min-height: 72px;
    }
    .form-submit-row {
      margin-top: 16px;
    }
    .form-note {
      font-size: 0.85rem;
      color: var(--color-ash);
      margin-top: 12px;
    }

    /* ===== FOOTER ===== */
    .footer {
      text-align: center;
      padding: 32px 0;
      border-top: 1px solid rgba(109, 111, 112, 0.2);
    }
    .footer a {
      color: var(--color-ash);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }
    .footer a:hover {
      color: var(--color-bone);
    }
    .footer-brand {
      font-size: 0.85rem;
      color: var(--color-ash);
      margin-bottom: 8px;
    }
    .footer-brand a {
      color: var(--color-ember);
    }

    /* ===== SUCCESS STATE ===== */
    .form-success {
      display: none;
      text-align: center;
      padding: 24px 0;
    }
    .form-success.visible {
      display: block;
      animation: fadeIn 0.4s ease;
    }
    .form-success .check-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--color-ember);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .form-success h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--color-bone);
      margin-bottom: 8px;
    }
    .form-success p {
      font-size: 0.9rem;
      color: var(--color-bone);
      opacity: 0.65;
    }

    /* ===== SHARE ROW ===== */
    .share-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(109, 111, 112, 0.2);
    }
    .share-label {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-ash);
    }
    .share-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(240, 232, 220, 0.06);
      border: 1px solid rgba(240, 232, 220, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease;
      color: var(--color-bone);
    }
    .share-btn:hover {
      background: rgba(240, 232, 220, 0.12);
    }
    .share-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    /* ===== RECALC LINK ===== */
    .recalc-link {
      text-align: center;
      margin-top: 24px;
    }
    .recalc-link a {
      color: var(--color-ember);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-decoration: none;
      cursor: pointer;
    }
    .recalc-link a:hover {
      filter: brightness(1.15);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 640px) {
      h1 { font-size: 1.75rem; }
      .hero-sub { font-size: 0.95rem; }
      .calc-card { padding: 28px 20px; }
      .slider-value-big { font-size: 2.25rem; }
      .comparison-grid { grid-template-columns: 1fr; }
      .facts-grid { grid-template-columns: 1fr; }
      .breakeven-pct { font-size: 2.75rem; }
      .compare-card .card-value { font-size: 1.75rem; }
      .results-header h2 { font-size: 1.5rem; }
      .cta-card { padding: 32px 20px; }
      .cta-card h2 { font-size: 1.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .password-box h1 { font-size: 1.5rem; }
    }
