@charset "utf-8";
/* Global Styles */
    :root {
      --bg: #050816;
      --bg-alt: #0b1220;
      --bg-light: #f5f7fb;
      --primary: #2f80ed;
      --primary-soft: rgba(47, 128, 237, 0.12);
      --accent: #f5a623;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dark: #0f172a;
      --border-subtle: #1e293b;
      --max-width: 1120px;
      --radius-lg: 18px;
      --radius-sm: 8px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
      --shadow-light: 0 10px 30px rgba(15, 23, 42, 0.18);
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      scroll-behavior: smooth;
      background: radial-gradient(circle at top, #0b1220 0, #020617 38%, #000 100%);
      color: var(--text-main);
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout helpers */
    .page {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .section {
      padding: 80px 20px;
    }

    .section-alt {
      background: #f8fafc;
      color: var(--text-dark);
    }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    h1, h2, h3, h4 {
      margin: 0 0 16px;
      letter-spacing: 0.03em;
    }

    h1 {
      font-size: clamp(2.3rem, 3vw + 1.2rem, 3.5rem);
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(1.6rem, 2vw + 0.8rem, 2.2rem);
    }

    p {
      margin: 0 0 12px;
      font-size: 0.98rem;
    }

    .eyebrow {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .muted {
      color: var(--text-muted);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.72rem;
      color: var(--text-muted);
      background: rgba(15, 23, 42, 0.85);
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #facc15, #ea580c);
    }

    .pill-strong {
      border-color: rgba(56, 189, 248, 0.7);
      color: #e0f2fe;
    }

    .pill-strong .pill-dot {
      background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 0;
    }

    .tag {
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: var(--text-muted);
      background: rgba(15, 23, 42, 0.9);
    }

    /* Header / Nav */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(20px);
      background: linear-gradient(to bottom, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.88));
      border-bottom: 1px solid rgba(51, 65, 85, 0.8);
    }

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

    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 48px;
      height:48px;
      border-radius: 24px;
      background: #ffffff url('../images/logo-circle.png') center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      border-radius: inherit;
    }

    .nav-title {
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #e5e7eb;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 3px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: linear-gradient(to right, var(--primary), var(--accent));
      transition: width 0.2s ease-out;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 7px 16px;
      border-radius: 999px;
      border: 1px solid rgba(56, 189, 248, 0.7);
      color: #e0f2fe;
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.9));
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
    }

    .nav-cta:hover {
      border-color: #38bdf8;
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 1));
    }

    @media (max-width: 780px) {
      .nav {
        flex-wrap: wrap;
      }
      .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        order: 3;
      }
    }

    /* Hero */
    #hero {
      padding-top: 70px;
      padding-bottom: 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
      gap: 40px;
      align-items: center;
    }

    .hero-title {
      font-size: 3.0rem;
      margin-bottom: 18px;
    }

    .hero-subtitle {
      font-size: 1rem;
      max-width: 480px;
      color: var(--text-muted);
      margin-bottom: 22px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.18s ease-out, transform 0.12s ease-out, border-color 0.18s ease-out, box-shadow 0.18s ease-out;
    }

    .btn-primary {
      background: linear-gradient(135deg, #2563eb, #22c55e);
      color: white;
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 40px rgba(37, 99, 235, 0.6);
    }

    .btn-secondary {
      background: rgba(15, 23, 42, 0.9);
      color: var(--text-main);
      border-color: rgba(148, 163, 184, 0.7);
    }

    .btn-secondary:hover {
      background: rgba(15, 23, 42, 1);
      border-color: rgba(248, 250, 252, 0.9);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-meta-block strong {
      display: block;
      font-size: 0.92rem;
      color: #e5e7eb;
      margin-bottom: 3px;
    }

    .hero-card {
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 22px 22px 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(129, 140, 248, 0.6), transparent 65%);
      top: -120px;
      right: -60px;
      opacity: 0.8;
      mix-blend-mode: screen;
    }

    .hero-card-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: center;
    }

    .portrait {
      width: 90px;
      height: 90px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #facc15, #22c55e 55%, #0ea5e9 100%);
      padding: 3px;
      box-shadow: 0 0 25px rgba(56, 189, 248, 0.8);
    }

    .portrait-inner {
      width: 100%;
      height: 100%;
      border-radius: inherit;
      background: #020617 url('../images/Shaun_Price_square_600.png') center/cover no-repeat;
    }

    .hero-name {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 4px;
      color: #e5e7eb;
    }

    .hero-role {
      font-size: 0.82rem;
      color: #cbd5f5;
      margin-bottom: 6px;
    }

    .hero-highlight {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .badge {
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: #e5e7eb;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-card {
        order: -1;
      }
    }

    /* Services */
    #services {
      padding-top: 40px;
    }

    .services-header {
      text-align: left;
      max-width: 640px;
      margin-bottom: 32px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    @media (max-width: 980px) {
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .service-card {
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
      border-radius: 18px;
      padding: 18px 18px 16px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(250, 204, 21, 0.7), transparent 65%);
      top: -80px;
      right: -60px;
      opacity: 0.6;
      mix-blend-mode: screen;
    }

    .service-card-inner {
      position: relative;
      z-index: 1;
    }

    .service-title {
      font-size: 1rem;
      margin-bottom: 6px;
      color: #e5e7eb;
    }

    .service-kicker {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 4px;
      color: #a5b4fc;
    }

    .service-desc {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .service-list {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.82rem;
      color: #cbd5f5;
    }

    .service-list li {
      margin-bottom: 6px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }

    .service-list li::before {
      content: "◆";
      font-size: 0.6rem;
      color: #38bdf8;
      margin-top: 4px;
    }

    /* About */
    #about {
      padding-top: 40px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.3fr) minmax(0, 2.2fr);
      gap: 40px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .about-panel {
      background: white;
      border-radius: var(--radius-lg);
      padding: 22px 22px 20px;
      box-shadow: var(--shadow-light);
      border: 1px solid #e2e8f0;
    }

    .about-panel h3 {
      font-size: 1.05rem;
    }

    .about-panel p {
      font-size: 0.95rem;
      color: #475569;
    }

    .about-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
      font-size: 0.85rem;
    }

    .about-fact {
      padding: 10px 11px;
      border-radius: 12px;
      background: #f8fafc;
      border: 1px dashed #e2e8f0;
    }

    .about-fact strong {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 2px;
      color: #0f172a;
    }

    /* Case Studies */
    #cases {
      padding-top: 40px;
    }

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

    @media (max-width: 900px) {
      .case-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .case-card {
      background: rgba(15, 23, 42, 0.96);
      border-radius: var(--radius-lg);
      padding: 18px 18px 16px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .case-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #a5b4fc;
      margin-bottom: 6px;
    }

    .case-title {
      font-size: 0.98rem;
      margin-bottom: 6px;
    }

    .case-meta {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .case-body {
      font-size: 0.86rem;
      color: #e5e7eb;
    }

    /* Why section */
    #why {
      padding-top: 40px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 2fr);
      gap: 30px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .why-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .why-points {
      display: grid;
      gap: 14px;
    }

    .why-point {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .why-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #22c55e, #0ea5e9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: #0b1120;
      flex-shrink: 0;
      box-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
    }

    .why-text h3 {
      margin: 0 0 3px;
      font-size: 0.95rem;
    }

    .why-text p {
      margin: 0;
      font-size: 0.86rem;
      color: #475569;
    }

    .why-panel {
      background: white;
      border-radius: var(--radius-lg);
      padding: 18px 18px 16px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-light);
      font-size: 0.9rem;
      color: #1f2937;
    }

    /* Contact */
    #contact {
      padding-top: 40px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
      gap: 30px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .contact-card {
      background: rgba(15, 23, 42, 0.98);
      padding: 22px 22px 20px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
    }

    .contact-details {
      display: grid;
      gap: 6px;
      margin: 12px 0 16px;
      font-size: 0.86rem;
    }

    .contact-details span {
      color: var(--text-muted);
    }

    .contact-label {
      font-weight: 500;
      color: #e5e7eb;
    }

    .contact-note {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .contact-form {
      background: white;
      border-radius: var(--radius-lg);
      padding: 18px 18px 16px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-light);
      font-size: 0.9rem;
      color: #0f172a;
    }

    .form-row {
      margin-bottom: 10px;
    }

    .form-row label {
      display: block;
      font-size: 0.8rem;
      margin-bottom: 4px;
      color: #475569;
    }

    .form-row input,
    .form-row textarea {
      width: 100%;
      padding: 8px 9px;
      font-size: 0.86rem;
      border-radius: 8px;
      border: 1px solid #cbd5e1;
      font-family: inherit;
      resize: vertical;
    }

    .form-row input:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
    }

    .form-row textarea {
      min-height: 90px;
    }

    .form-submit {
      margin-top: 2px;
    }

    .btn-submit {
      background: linear-gradient(135deg, #2563eb, #22c55e);
      color: #f9fafb;
      border-radius: 999px;
      border: none;
      padding: 9px 18px;
      font-size: 0.86rem;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
    }

    .btn-submit:hover {
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.6);
      transform: translateY(-1px);
    }

    .btn-submit:disabled {
      cursor: not-allowed;
      opacity: 0.7;
      transform: none;
      box-shadow: none;
    }

    .contact-status {
      margin-top: 10px;
      font-size: 0.86rem;
      color: #0f172a;
      min-height: 20px;
    }

    .contact-status.success {
      color: #166534;
    }

    .contact-status.error {
      color: #b91c1c;
    }

    .form-honeypot {
      display: none;
    }

    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(2, 6, 23, 0.95);
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      padding: 16px 20px;
      display: none;
      z-index: 1000;
    }

    .cookie-banner.show {
      display: block;
    }

    .cookie-banner-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #e2e8f0;
      font-size: 0.86rem;
    }

    .cookie-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cookie-btn {
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.8);
      color: #e2e8f0;
      font-size: 0.8rem;
    }

    .cookie-btn:hover {
      border-color: #38bdf8;
    }

    .cookie-secondary {
      background: transparent;
    }

    .cookie-link {
      color: #7dd3fc;
      font-size: 0.8rem;
      text-decoration: underline;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(51, 65, 85, 0.85);
      padding: 16px 20px;
      font-size: 0.78rem;
      color: var(--text-muted);
      background: #020617;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 14px;
    }

    .footer-links a {
      color: #cbd5f5;
    }

    @media (max-width: 600px) {
      .section {
        padding: 60px 16px;
      }
      footer {
        padding: 14px 16px;
      }
    }