:root {
  --navy: #0f2742;
  --navy-2: #173a5e;
  --navy-3: #0a1b30;
  --blue: #1f6feb;
  --blue-dark: #1558c0;
  --blue-soft: #e8f0fd;
  --tape: #f5b40a;
  --tape-soft: #fff3cf;
  --ink: #14233a;
  --muted: #5b6b82;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --green: #16a34a;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 39, 66, .06), 0 10px 30px rgba(15, 39, 66, .08);
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --iso-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='28' viewBox='0 0 48 28'%3E%3Cpath d='M0 14 24 0 48 14 24 28Z M24 0v28' fill='none' stroke='%230f2742' stroke-opacity='.09'/%3E%3C/svg%3E");
  --iso-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='28' viewBox='0 0 48 28'%3E%3Cpath d='M0 14 24 0 48 14 24 28Z M24 0v28' fill='none' stroke='%23ffffff' stroke-opacity='.07'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0; letter-spacing: -0.02em; color: var(--navy); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tape); box-shadow: 0 0 0 4px var(--tape-soft); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  font: inherit; font-weight: 600; font-size: .98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s, box-shadow .15s;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(31, 111, 235, .25); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm { padding: 9px 16px; font-size: .9rem; box-shadow: none; }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }
:focus-visible { outline: 3px solid rgba(31, 111, 235, .4); outline-offset: 2px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-mark .lid { fill: var(--blue); }
.brand-mark .side-l { fill: var(--navy); }
.brand-mark .side-r { fill: var(--navy-2); }
.brand-mark .tape { stroke: #fff; stroke-width: 3.5; stroke-linecap: round; opacity: .9; }
.brand-text { line-height: 1; }
.brand-text b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.03em; }
.brand-text span { display: block; font-family: var(--font-mono); font-weight: 600; font-size: .58rem; letter-spacing: .4em; color: var(--blue); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .93rem; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .2s, opacity .2s; }

/* Hero */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--iso-light);
  -webkit-mask-image: radial-gradient(70% 90% at 80% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(70% 90% at 80% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 85% 10%, var(--blue-soft), transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 .mark {
  background: linear-gradient(transparent 62%, var(--tape) 62%, var(--tape) 92%, transparent 92%);
  padding: 0 .08em;
}
.lead { font-size: 1.15rem; color: var(--muted); margin: 24px 0 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .9rem; color: var(--muted); }

/* Ticket card */
.ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.ticket-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 24px; background: var(--navy); color: #fff; }
.ticket-label { font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #aebdd1; }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: #7ee2a0; background: rgba(22, 163, 74, .18); padding: 4px 10px; border-radius: 99px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, .25); }
.ticket-body { padding: 8px 24px; }
.ticket-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.ticket-row:last-child { border-bottom: 0; }
.ticket-row span { color: var(--muted); font-size: .9rem; }
.ticket-row strong { font-size: .92rem; text-align: right; overflow-wrap: anywhere; }
.ticket-row a { text-decoration: none; }
.ticket-tear {
  height: 0; margin: 6px 0; border-top: 2px dashed var(--line); position: relative;
}
.ticket-tear::before, .ticket-tear::after {
  content: ""; position: absolute; top: -12px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
}
.ticket-tear::before { left: -12px; }
.ticket-tear::after { right: -12px; }
.hero .ticket-tear::before, .hero .ticket-tear::after { background: #fff; }
.ticket-foot { padding: 14px 24px 20px; display: flex; align-items: center; gap: 16px; }
.barcode { width: 160px; height: 36px; fill: var(--navy); opacity: .85; }
.barcode-text { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--muted); }

/* Fact strip */
.strip { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.strip::before { content: ""; position: absolute; inset: 0; background: var(--iso-dark); pointer-events: none; }
.strip-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); }
.strip-grid div { padding: 26px 16px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .1); }
.strip-grid div:last-child { border-right: 0; }
.strip strong { display: block; font-family: var(--font-mono); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.strip span { font-size: .82rem; color: #aebdd1; }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; background: var(--iso-dark); -webkit-mask-image: linear-gradient(#000, transparent 80%); mask-image: linear-gradient(#000, transparent 80%); pointer-events: none; }
.section-dark > .container { position: relative; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: #7fb0ff; }
.section-dark .section-sub { color: #aebdd1; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 14px 0 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.prose p { margin: 0 0 18px; font-size: 1.08rem; color: #344560; }
.prose p:last-child { margin-bottom: 0; }
.text-link { display: inline-block; font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.stack { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 24px; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 28px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: -24px; height: 2px; background: rgba(255, 255, 255, .12); }
.step:last-child::before { right: 0; }
.step::after { content: ""; position: absolute; top: -5px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--tape); box-shadow: 0 0 0 4px rgba(245, 180, 10, .2); }
.step-num { display: block; font-family: var(--font-mono); font-size: .8rem; font-weight: 600; letter-spacing: .14em; color: var(--tape); margin-bottom: 12px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: #c3cfdf; font-size: .96rem; }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat {
  --cat: var(--blue);
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.cat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--cat); }
.cat:hover { border-color: #c9d6e8; box-shadow: var(--shadow); transform: translateY(-3px); }
.cat svg {
  width: 46px; height: 46px; padding: 11px; margin-bottom: 16px;
  border-radius: 12px; background: color-mix(in srgb, var(--cat) 12%, #fff);
  fill: none; stroke: var(--cat); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.cat p { margin: 8px 0 0; color: var(--muted); font-size: .94rem; }
.cat-open { --cat: var(--tape); background: var(--navy); border-color: var(--navy); }
.cat-open h3 { color: #fff; }
.cat-open p { color: #c3cfdf; }
.cat-open svg { background: rgba(255, 255, 255, .1); stroke: var(--tape); }

/* Fit */
.fit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.fit-card { border-radius: 18px; padding: 32px; }
.fit-you { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; }
.fit-us { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.fit-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.fit-head h3 { font-size: 1.35rem; }
.fit-you h3 { color: #fff; }
.fit-tag {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px; border: 1px solid currentColor;
}
.fit-you .fit-tag { color: var(--tape); }
.fit-us .fit-tag { color: var(--blue); }
.fit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.fit-list li { position: relative; padding-left: 30px; font-size: .97rem; line-height: 1.55; }
.fit-you li { color: #c3cfdf; }
.fit-you li strong { color: #fff; }
.fit-you li::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 2px; background: var(--tape); }
.checks-list li::before {
  content: ""; position: absolute; left: 0; top: .1em; width: 20px; height: 20px; border-radius: 6px;
  background: var(--tape-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8860b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.fit-note { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line); font-weight: 600; color: var(--navy); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 1.1rem;
  background: var(--blue-soft); color: var(--blue); transition: transform .2s, background .2s;
}
.faq details[open] summary::after { content: "−"; background: var(--tape-soft); color: #8a6508; }
.faq details p { padding: 0 44px 20px 0; color: #344560; }
.faq details p a { font-weight: 600; text-decoration: none; }
.faq details p a:hover { text-decoration: underline; }

/* Company details */
.details-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 8px 28px; box-shadow: var(--shadow); }
.details-card dl { margin: 0; }
.details-card div { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px dashed var(--line); }
.details-card div:last-child { border-bottom: 0; }
.details-card dt { color: var(--muted); font-size: .92rem; }
.details-card dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.details-card a { text-decoration: none; }

/* Enquiry */
.enquire-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.enquire-intro p { color: var(--muted); font-size: 1.05rem; }
.enquire-intro h2 { margin-bottom: 14px; }
.contact-box { margin-top: 28px; padding: 20px; border-radius: var(--radius); background: var(--tape-soft); border: 1px dashed #e6c76a; }
.contact-box span { display: block; font-size: .88rem; color: #6b5a1f; margin-bottom: 4px; }
.contact-box a { font-weight: 700; font-size: 1.05rem; text-decoration: none; color: var(--navy); overflow-wrap: anywhere; }

.enquiry-form {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px; box-shadow: var(--shadow);
  display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: grid; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.req { color: #c2410c; margin-left: 2px; }
.enquiry-form input:not([type="checkbox"]), .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  font: inherit; font-weight: 400; font-size: .98rem;
  padding: 11px 13px;
  border: 1px solid #cfd8e3; border-radius: 9px;
  background: #fff; color: var(--ink);
  transition: border-color .15s;
}
.enquiry-form textarea { resize: vertical; min-height: 120px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(31, 111, 235, .15); }
.enquiry-form .invalid { border-color: #dc2626 !important; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: .9rem; font-weight: 600; margin-bottom: 8px; padding: 0; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
.enquiry-form .check { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: .94rem; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue); flex-shrink: 0; }
.consent { color: var(--muted); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: .95rem; min-height: 1.4em; }
.form-status.error { color: #b91c1c; }
.form-status.success { color: var(--green); font-weight: 600; }

/* Footer */
.site-footer { position: relative; background: var(--navy-3); color: #c3cfdf; padding: 64px 0 28px; font-size: .94rem; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: var(--iso-dark); -webkit-mask-image: linear-gradient(transparent, #000); mask-image: linear-gradient(transparent, #000); pointer-events: none; }
.site-footer .container { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.brand-light { color: #fff; }
.brand-light .brand-mark .lid { fill: #4d8ff5; }
.brand-light .brand-mark .side-l { fill: #fff; }
.brand-light .brand-mark .side-r { fill: #c9d8ee; }
.brand-light .brand-mark .tape { stroke: var(--navy); opacity: .6; }
.brand-light .brand-text b { color: #fff; }
.brand-light .brand-text span { color: #8fb8ff; }
.footer-blurb { max-width: 340px; margin-top: 16px; }
.site-footer h4 { color: #fff; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer p { margin: 0 0 6px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }

/* Simple content pages (privacy, 404) */
.page { padding: 72px 0 96px; }
.page .container { max-width: 760px; }
.page h1 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 8px; }
.page h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.page p, .page li { color: #344560; }
.page p { margin-bottom: 14px; }
.page .updated { color: var(--muted); font-size: .9rem; margin-bottom: 32px; }

/* Scroll reveal (class added by JS only, so nothing is hidden without it) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .step:nth-child(2)::before { right: 0; }
  .fit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 14px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 56px 0 48px; }
  .hero-grid, .split, .enquire-grid { grid-template-columns: 1fr; gap: 36px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid div { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .strip-grid div:nth-child(2n) { border-right: 0; }
  .strip-grid div:last-child { grid-column: span 2; border-bottom: 0; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .strip strong { font-size: 1.1rem; }
  .strip-grid div { padding: 20px 12px; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::before { right: 0; }
  .fit-card { padding: 24px; }
  .form-row, .checks { grid-template-columns: 1fr; }
  .enquiry-form { padding: 22px; }
  .details-card { padding: 4px 18px; }
  .details-card div { grid-template-columns: 1fr; gap: 2px; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ticket-foot { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
