/*
 * Created Date: Thursday, 19th February 2026, 8:44:18 am
 * Author: Kingsley Chimezie (KCPC7)
 */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #6c89c1;
    --primary-dim: #6c89c120;
    --primary-mid: #6c89c145;
    --white: #ffffff;
    --dark: #212121;
    --deeper: #151515;
    --muted: #999;
    --text: #bbb;
    --border: rgba(108, 137, 193, 0.15);
    --border-solid: #2a2a2a;
  }

  html { scroll-behavior: smooth; }

  body {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
  }

  /* ── PILL LABEL (matches your FAQ style) ── */
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108, 137, 193, 0.1);
    border: 1px solid rgba(108, 137, 193, 0.25);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--deeper);
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(108,137,193,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(108,137,193,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hero-left {
    padding: clamp(60px, 10vw, 120px) clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-right: 1px solid var(--border);
  }
  

  h1 {
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.15s forwards;
    color: var(--white);
  }

  h1 span {
    color: var(--primary);
    font-weight: 300;
    font-style: italic;
  }

  .hero-lead {
    font-size: 18px;
    color: var(--text);
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.3s forwards;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 36px;
  }

  .hero-left .pill {
    opacity: 0;
    animation: fadeUp 0.7s ease 0.05s forwards;
    width: fit-content;
  }

  .hero-right {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 60px 40px;
    z-index: 1;
  }

  /* glow behind logo */
  .hero-right::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, #6c89c112, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
  }

  .hero-logo-wrap img {
    width: clamp(140px, 16vw, 200px);
    height: auto;
    display: block;
  }

  .hero-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--primary-mid), transparent);
  }

  .hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
    text-align: center;
  }

  .hero-stat-row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2px;
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
  }

  .hero-stat {
    background: rgba(108, 137, 193, 0.07);
    border: 1px solid var(--border);
    padding: 20px 28px;
    text-align: center;
    flex: 1;
  }

  .hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }

  .hero-stat span {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* ── SHARED ── */
  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
  }

  .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }

  section {
    padding: clamp(64px, 9vw, 100px) 0;
  }

  /* ── WHO WE ARE ── */
  .who {
    background: var(--deeper);
  }

  .two-col {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    align-items: start;
  }

  .col-label {
    position: sticky;
    top: 40px;
  }

  .col-label p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin-top: 14px;
  }

  .prose p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 1.4em;
    line-height: 1.8;
    font-weight: 300;
  }

  .prose p:last-child { margin-bottom: 0; }

  .prose strong {
    color: var(--white);
    font-weight: 500;
  }

  .pull-quote {
    border-left: 2px solid var(--primary);
    padding: 18px 22px;
    margin: 32px 0;
    background: rgba(108, 137, 193, 0.07);
    border-radius: 0 6px 6px 0;
  }

  .pull-quote p {
    font-size: 18px !important;
    font-style: italic;
    color: var(--white) !important;
    font-weight: 300 !important;
    margin: 0 !important;
    line-height: 1.65 !important;
  }

  /* ── BACK BUTTON ── */
  .back-btn {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(108, 137, 193, 0.15);
    border: 1px solid rgba(108, 137, 193, 0.3);
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
  }

  .back-btn:hover {
    background: rgba(108, 137, 193, 0.25);
    border-color: rgba(108, 137, 193, 0.5);
    transform: translateX(-4px);
  }

  .back-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: flex;
  }

  .back-btn:hover i {
    transform: translateX(-2px);
  }

  /* Tooltip */
  .back-btn::after {
    content: 'Back to Homepage';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(108, 137, 193, 0.95);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(8px);
  }

  .back-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(12px);
  }



  @media (max-width: 768px) {
    .back-btn {
      top: 20px;
      left: 20px;
      padding: 10px 16px;
      font-size: 13px;
    }
  }

  /* ── IRISH IDENTITY STRIP ── */
  .irish-strip {
    background: var(--dark);
    border-top: 1px solid var(--border-solid);
    border-bottom: 1px solid var(--border-solid);
  }

  .irish-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .irish-block {
    padding: clamp(40px, 6vw, 64px) clamp(30px, 5vw, 56px);
    position: relative;
  }

  .irish-block:first-child {
    border-right: 1px solid var(--border-solid);
  }

  .irish-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    margin-top: 16px;
  }

  .irish-block p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    font-weight: 300;
  }

  .irish-block a {
    color: var(--primary);
    text-decoration: none;
  }

  .irish-block a:hover {
    text-decoration: underline;
  }

  /* ── FEATURES ── */
  .features {
    background: var(--deeper);
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 14px;
  }

  .section-header h2 span {
    color: var(--primary);
    font-weight: 300;
  }

  .section-header > p {
    font-size: 18px;
    color: var(--text);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-solid);
    border: 1px solid var(--border-solid);
    border-radius: 8px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--darker, #1a1a1a);
    padding: 30px 26px;
    position: relative;
    transition: background 0.25s;
  }

  .feature-card:hover { background: #202020; }

  .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width 0.35s ease;
  }

  .feature-card:hover::after { width: 100%; }

  .feature-icon {
    width: 28px; height: 28px;
    color: var(--primary);
    opacity: 0.75;
    margin-bottom: 14px;
    transition: opacity 0.25s;
  }

  .feature-card:hover .feature-icon { opacity: 1; }

  .feature-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--dark);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-solid);
    border: 1px solid var(--border-solid);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
  }

  .step {
    background: #1e1e1e;
    padding: 32px 28px;
    position: relative;
    transition: background 0.25s;
  }

  .step:hover { background: #222; }

  .step::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width 0.35s ease;
  }

  .step:hover::after { width: 100%; }

  .step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
    background: rgba(108, 137, 193, 0.1);
    border: 1px solid rgba(108, 137, 193, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 18px;
  }

  .step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── CLOSING ── */
  .closing {
    background: var(--deeper);
    border-top: 1px solid var(--border-solid);
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .closing::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #6c89c10a, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .closing-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
  }

  .closing-logo {
    width: 110px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    opacity: 0.9;
  }

  .closing h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--white);
  }

  .closing h2 span { color: var(--primary); font-weight: 300; }

  .closing p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: opacity 0.2s, transform 0.2s;
  }

  .btn:hover { opacity: 0.85; transform: translateY(-2px); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { border-right: none; border-bottom: 1px solid var(--border); }
    .hero-right { min-height: 300px; padding: 48px 28px; }
    .two-col { grid-template-columns: 1fr; gap: 24px; }
    .col-label { position: static; }
    .features-grid, .steps { grid-template-columns: 1fr; }
    .irish-inner { grid-template-columns: 1fr; }
    .irish-block:first-child { border-right: none; border-bottom: 1px solid var(--border-solid); }
  }
