/* ==========================================================================
   DigiGron — Static Stylesheet
   Design tokens + utility classes mirroring the original Tailwind build.
   ========================================================================== */

/* :root {
  --radius: 0.5rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", serif;

  --background: oklch(0.14 0.005 280);
  --foreground: oklch(0.97 0.01 100);
  --surface: oklch(0.18 0.008 280);
  --surface-foreground: oklch(0.97 0.01 100);
  --card: oklch(0.18 0.008 280);
  --primary: oklch(0.92 0.22 128);
  --primary-foreground: oklch(0.14 0.005 280);
  --muted: oklch(0.22 0.008 280);
  --muted-foreground: oklch(0.65 0.015 280);
  --border: oklch(1 0 0 / 8%);
  --input: oklch(1 0 0 / 12%);
  --ring: oklch(0.92 0.22 128);

  --gradient-radial: radial-gradient(circle at 20% 0%, oklch(0.92 0.22 128 / 0.15), transparent 50%);
  --gradient-mesh:
    radial-gradient(at 80% 100%, oklch(0.92 0.22 128 / 0.12), transparent 60%),
    radial-gradient(at 0% 50%, oklch(0.55 0.18 290 / 0.1), transparent 60%);
  --shadow-glow: 0 0 60px -10px oklch(0.92 0.22 128 / 0.5);
  --shadow-card: 0 1px 0 0 oklch(1 0 0 / 0.06) inset, 0 30px 60px -20px oklch(0 0 0 / 0.6);
} */

:root {

  --radius: 0.5rem;

  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);


  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", serif;


  /* Background */
  --background: #080b0a;
  --foreground: #f5fff9;


  /* Surface / Cards */
  --surface: #101512;
  --surface-foreground: #f5fff9;

  --card: #101512;


  /* Brand Colors */
  --primary: #03f979;
  --primary-foreground: #04120c;

  --secondary: #08f6a2;
  --secondary-foreground: #04120c;


  /* Muted */
  --muted: #17201b;
  --muted-foreground: #94a99e;


  /* Borders */
  --border: rgba(255,255,255,0.08);
  --input: rgba(255,255,255,0.12);


  /* Focus */
  --ring: #03f979;


  /* Gradients */
  --gradient-radial:
    radial-gradient(
      circle at 20% 0%,
      rgba(3,249,121,0.18),
      transparent 50%
    );


  --gradient-mesh:
    radial-gradient(
      at 80% 100%,
      rgba(8,246,162,0.15),
      transparent 60%
    ),
    radial-gradient(
      at 0% 50%,
      rgba(3,249,121,0.10),
      transparent 60%
    );


  /* Shadows */
  --shadow-glow:
    0 0 60px -10px rgba(3,249,121,0.55);


  --shadow-card:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 60px -20px rgba(0,0,0,0.6);

}

@font-face {
		font-family: 'CameraPlainVariable';
		src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
		font-weight: 100 900;
		font-style: normal;
		font-display: swap;
	}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border: 0 solid var(--border); }
* { margin: 0; }
html { background: var(--background); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  background-color: var(--background);
  color: var(--foreground);
   font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; cursor: pointer; border: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  /* font-family: var(--font-display); */
  font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
::selection { background: var(--primary); color: var(--primary-foreground); }

/* Typography helpers ------------------------------------------------------ */
.font-display { 
  /* font-family: var(--font-display);  */
  font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.font-serif-display { 
  /* font-family: var(--font-serif); font-weight: 400; */
  font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-balance { text-wrap: balance; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-none { line-height: 1; }
.leading-\[0\.95\] { line-height: 0.95; }
.leading-\[1\.05\] { line-height: 1.05; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.whitespace-nowrap { white-space: nowrap; }
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
/* .text-sm { font-size: 0.875rem; line-height: 1.25rem; } */

.text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
}

.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Color utilities --------------------------------------------------------- */
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-muted-foreground\/60 { color: color-mix(in oklch, var(--muted-foreground) 60%, transparent); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.bg-background { background-color: var(--background); }
.bg-background\/70 { background-color: color-mix(in oklch, var(--background) 70%, transparent); }
.bg-surface { background-color: var(--surface); }
.bg-surface\/30 { background-color: color-mix(in oklch, var(--surface) 30%, transparent); }
.bg-surface\/40 { background-color: color-mix(in oklch, var(--surface) 40%, transparent); }
.bg-surface\/50 { background-color: color-mix(in oklch, var(--surface) 50%, transparent); }
.bg-surface\/60 { background-color: color-mix(in oklch, var(--surface) 60%, transparent); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/10 { background-color: color-mix(in oklch, var(--primary) 10%, transparent); }
.bg-border { background-color: var(--border); }
.fill-primary { fill: var(--primary); }
.fill-current { fill: currentColor; }

/* Borders ----------------------------------------------------------------- */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-dashed { border-style: dashed; }
.border-border { border-color: var(--border); }
.border-primary { border-color: var(--primary); }
.border-primary\/20 { border-color: color-mix(in oklch, var(--primary) 20%, transparent); }
.border-input { border-color: var(--input); }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-border > * + * { border-color: var(--border); }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-l-full { border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; }
.rounded-r-full { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; }
.rounded-md { border-radius: var(--radius-md); }

/* Layout ------------------------------------------------------------------ */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-24 { top: 6rem; }
.-top-3 { top: -0.75rem; }
.left-8 { left: 2rem; }
.bottom-5 { bottom: 1.25rem; }
.right-5 { right: 1.25rem; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-self-end { justify-self: end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-px { gap: 1px; }
.gap-0\.5 { gap: 0.125rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[320px\] { min-height: 320px; }
.h-9 { height: 2.25rem; }
.h-11 { height: 2.75rem; }
.h-16 { height: 4rem; }
.size-1\.5 { width: 0.375rem; height: 0.375rem; }
.size-2 { width: 0.5rem; height: 0.5rem; }
.size-3\.5 { width: 0.875rem; height: 0.875rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-11 { width: 2.75rem; height: 2.75rem; }
.size-12 { width: 3rem; height: 3rem; }
.size-16 { width: 4rem; height: 4rem; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.object-contain { object-fit: contain; }
.shrink-0 { flex-shrink: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-32 { margin-top: 8rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[18ch\] { max-width: 18ch; }

/* Spacing ----------------------------------------------------------------- */
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-4 { padding: 1rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-32 { padding-bottom: 8rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-24 { margin-top: 6rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-16 { margin-bottom: 4rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-32 > * + * { margin-top: 8rem; }
.w-full {width: 100%;}


/* Grid -------------------------------------------------------------------- */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* Buttons / interactive --------------------------------------------------- */
.transition { transition: color .2s, background-color .2s, border-color .2s, opacity .2s, transform .2s, box-shadow .2s; }
.transition-colors { transition: color .2s, background-color .2s, border-color .2s; }
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.cursor-pointer { cursor: pointer; }
.outline-none { outline: none; }
.resize-none { resize: none; }

.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:bg-surface:hover { background-color: var(--surface); }
.hover\:bg-primary\/90:hover { background-color: color-mix(in oklch, var(--primary) 90%, transparent); }
.hover\:bg-accent:hover { background-color: var(--surface); }
.hover\:bg-surface\/60:hover { background-color: color-mix(in oklch, var(--surface) 60%, transparent); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:border-primary\/50:hover { border-color: color-mix(in oklch, var(--primary) 50%, transparent); }

.focus\:border-primary:focus { border-color: var(--primary); }

/* Effects ----------------------------------------------------------------- */
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-card { box-shadow: var(--shadow-card); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.bg-mesh { background-image: var(--gradient-mesh); }
.bg-radial { background-image: var(--gradient-radial); }
.grid-lines {
  background-image:
    linear-gradient(to right, oklch(1 0 0 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }
.marquee { animation: marquee 40s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent));
}
.from-emerald-500\/30 { --tw-gradient-from: oklch(0.72 0.19 158 / 0.30); }
.from-sky-500\/30 { --tw-gradient-from: oklch(0.71 0.16 231 / 0.30); }
.from-pink-500\/30 { --tw-gradient-from: oklch(0.71 0.23 358 / 0.30); }
.from-violet-500\/30 { --tw-gradient-from: oklch(0.60 0.24 289 / 0.30); }
.from-amber-500\/30 { --tw-gradient-from: oklch(0.79 0.17 70 / 0.30); }
.from-rose-500\/30 { --tw-gradient-from: oklch(0.65 0.23 15 / 0.30); }
.via-transparent { --tw-gradient-via: transparent; }
.to-transparent { --tw-gradient-to: transparent; }

/* Grid placement helpers */
.place-items-center { place-items: center; }

/* Peer/checked chip toggle for the contact form */
.peer.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.peer:checked + .peer-checked\:bg-primary { background-color: var(--primary); }
.peer:checked + span.peer-checked\:bg-primary { color: var(--primary-foreground); border-color: var(--primary); }

/* Group hover state ------------------------------------------------------- */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:text-primary { color: var(--primary); }
.group:hover .group-hover\:text-primary-foreground { color: var(--primary-foreground); }
.group:hover .group-hover\:bg-primary { background-color: var(--primary); }

/* Reveal-on-scroll animation --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Header nav underline for active link */
[aria-current="page"] { color: var(--foreground); }

.profile-menu {
    position: relative;
  }


  .profile-btn {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    background: #071A13;

    color: white;

    cursor: pointer;

    border: 1px solid #03f979;

    font-weight: 600;

  }



  .profile-btn img {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #08f6a2;

  }




  .profile-dropdown {


    position: absolute;

    top: 65px;

    right: 0;

    width: 320px;

    background: white;

    border-radius: 20px;

    box-shadow:
      0 20px 60px rgba(0, 0, 0, .2);

    display: none;

    overflow: hidden;

    z-index: 1000;

  }



  .profile-header {


    padding: 30px 20px;

    text-align: center;

    background:
      linear-gradient(135deg,
        #03f979,
        #08f6a2);


    color: #071A13;


  }



  .profile-header img {


    width: 85px;

    height: 85px;

    border-radius: 50%;

    border: 4px solid white;

    object-fit: cover;

  }



  .profile-header h3 {


    margin: 12px 0 5px;

    font-size: 20px;


  }



  .profile-header p {


    margin: 0;

    font-size: 14px;

    word-break: break-word;


  }



  .verified {


    color: #006b35;

    font-weight: 700;

  }



  .notverified {


    color: #d40000;

    font-weight: 700;

  }




  .profile-dropdown a,
  .profile-dropdown button {


    display: block;

    width: 100%;

    padding: 15px 22px;

    text-align: left;

    background: white;

    border: none;

    cursor: pointer;

    font-size: 15px;

    color: #071A13;

  }



  .profile-dropdown a:hover,
  .profile-dropdown button:hover {


    background: #edfff5;

    color: #008f4c;

  }

  /* Spinner & Submit Button Styles */
.btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.loader {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: none; /* Hidden by default */
  animation: rotation 0.6s linear infinite;
}

