:root {
  --background: #02070d;
  --panel: #07121e;
  --panel-light: #0a1927;

  --white: #f4fbff;
  --muted: #8ba1b3;

  --blue: #0987ff;
  --cyan: #35d9ff;

  --border: rgba(91, 190, 255, 0.14);

  --shadow:
    0 30px 90px rgba(0, 115, 255, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--white);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;

  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      rgba(255,255,255,.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.018) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 85%
    );

  z-index: -3;
}

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

.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: .2;
  z-index: -2;
}

.glow-one {
  width: 450px;
  height: 450px;
  background: #006cff;
  top: -200px;
  left: -150px;
}

.glow-two {
  width: 500px;
  height: 500px;
  background: #00cfff;
  right: -300px;
  top: 40%;
}


/* NAVBAR */

.navbar {
  height: 82px;
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 17px;
  font-weight: 800;
  letter-spacing: .14em;

  flex-shrink: 0;
}

/* IMAGE LOGO */

.logo-image-wrapper {
  width: 38px;
  height: 38px;

  min-width: 38px;
  min-height: 38px;

  flex: 0 0 38px;

  display: block;
  overflow: hidden;

  border-radius: 50%;

  border: 1px solid rgba(53,217,255,.35);

  box-shadow:
    0 0 12px rgba(0,132,255,.30),
    0 0 24px rgba(0,102,255,.12);
}

.logo-image-wrapper img {
  display: block;

  width: 38px !important;
  height: 38px !important;

  min-width: 38px !important;
  min-height: 38px !important;

  max-width: 38px !important;
  max-height: 38px !important;

  object-fit: cover;
  object-position: center;

  border-radius: 50%;
}

.logo-text {
  display: block;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 32px;
  color: #8ea6b7;
  font-size: 13px;
}

nav a {
  transition: .2s;
}

nav a:hover {
  color: white;
}

.nav-button {
  padding: 11px 17px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(10,24,38,.7);
  font-size: 12px;
  transition: .2s;
}

.nav-button:hover {
  border-color: rgba(53,217,255,.4);
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 25px;
}


/* HERO */

.hero {
  max-width: 1240px;
  min-height: 650px;
  margin: auto;
  padding: 80px 28px 90px;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  color: #61dcff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  margin-bottom: 18px;
}

.status-dot {
  display: inline-block;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #3fe5aa;
  box-shadow: 0 0 12px #3fe5aa;

  margin-right: 8px;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 28px;
}

.hero h1 span {
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(53,217,255,.2);
}

.hero-content > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 14px 20px;

  border-radius: 11px;

  font-size: 13px;
  font-weight: 700;

  border: 1px solid transparent;

  cursor: pointer;

  transition: .2s;
}

.primary {
  background:
    linear-gradient(
      110deg,
      #0877ed,
      #18bfff
    );

  box-shadow:
    0 12px 35px rgba(0,137,255,.22);
}

.primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 45px rgba(0,137,255,.35);
}

.secondary {
  border-color: var(--border);
  color: #afc2d0;
  background: rgba(255,255,255,.02);
}

.secondary:hover {
  background: rgba(255,255,255,.05);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #6d8497;
  font-size: 11px;
}

.trust-icons {
  display: flex;
}

.trust-icons span {
  width: 28px;
  height: 28px;

  margin-left: -5px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #0b1d2c;
  border: 1px solid #193b53;
}

.trust-icons span:first-child {
  margin-left: 0;
}


/* HERO VISUAL */

.hero-visual {
  height: 510px;
  position: relative;

  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;

  border:
    1px solid rgba(53,217,255,.13);

  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 210px;
  transform: rotate(-20deg);
}

.orbit-two {
  width: 420px;
  height: 170px;
  transform: rotate(35deg);
}

.dolphin-card {
  width: 290px;
  height: 370px;

  border-radius: 28px;

  border:
    1px solid rgba(74,205,255,.28);

  background:
    linear-gradient(
      160deg,
      rgba(15,40,61,.95),
      rgba(4,11,19,.98)
    );

  box-shadow:
    0 30px 90px rgba(0,124,255,.25),
    inset 0 1px rgba(255,255,255,.08);

  position: relative;

  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 22px;

  animation: floating 5s ease-in-out infinite;
}

.card-header {
  width: 100%;

  display: flex;
  justify-content: space-between;

  color: #628299;

  font-size: 8px;
  letter-spacing: .12em;
}

.online i {
  display: inline-block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #3ee3a8;

  margin-right: 5px;

  box-shadow: 0 0 9px #3ee3a8;
}

/* Original dolphin stays in the card */

.dolphin {
  font-size: 105px;
  margin-top: 45px;

  z-index: 2;

  filter:
    drop-shadow(
      0 0 30px rgba(44,207,255,.55)
    );
}

.card-name {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: .1em;

  margin-top: 22px;

  z-index: 2;
}

.card-subtitle {
  color: #5d9bb6;

  font-size: 8px;
  letter-spacing: .3em;

  z-index: 2;
}

.scan {
  position: absolute;

  width: 100%;
  height: 1px;

  background: var(--cyan);

  box-shadow:
    0 0 15px var(--cyan);

  opacity: .4;

  animation: scan 4s linear infinite;
}

.floating-card {
  position: absolute;

  padding: 11px 14px;

  border-radius: 12px;

  border: 1px solid var(--border);

  background: rgba(5,17,28,.92);

  color: #9ab8c9;

  font-size: 10px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(10px);
}

.floating-one {
  top: 75px;
  right: 0;
}

.floating-two {
  bottom: 75px;
  left: 0;
}


/* STATS */

.stats {
  max-width: 1184px;

  margin: 0 auto 110px;

  padding: 28px;

  display: grid;
  grid-template-columns: repeat(4,1fr);

  border:
    1px solid var(--border);

  border-radius: 18px;

  background: rgba(7,18,30,.7);
}

.stat {
  text-align: center;

  border-right:
    1px solid var(--border);
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  font-size: 29px;
}

.stat span {
  color: #70879a;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: .08em;
}


/* SECTIONS */

.section {
  max-width: 1184px;
  margin: auto;
  padding: 90px 28px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 50px;
}

.section-heading h2,
.split-heading h2 {
  font-size: 52px;
  line-height: 1.03;
  letter-spacing: -.05em;
  margin-bottom: 15px;
}

.section-heading p,
.split-heading > p {
  color: var(--muted);
  font-size: 14px;
}


/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border-top:
    1px solid var(--border);
}

.step {
  padding: 30px 24px;

  border-right:
    1px solid var(--border);
}

.step:first-child {
  border-left:
    1px solid var(--border);
}

.step small {
  color: #4d748d;
  font-size: 10px;
}

.step-icon {
  width: 46px;
  height: 46px;

  margin: 28px 0 24px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  border:
    1px solid rgba(53,217,255,.2);

  color: var(--cyan);

  background: rgba(18,150,255,.05);
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  color: #71899b;
  font-size: 12px;
}


/* CATEGORIES */

.split-heading {
  display: flex;
  justify-content: space-between;

  gap: 60px;

  margin-bottom: 45px;
}

.split-heading > p {
  max-width: 390px;
  margin-top: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.category {
  display: flex;

  gap: 22px;

  padding: 25px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background: rgba(7,17,28,.55);

  transition: .2s;
}

.category:hover {
  transform: translateY(-2px);

  border-color:
    rgba(53,217,255,.3);
}

.category > span {
  color: #3f708b;
  font-size: 10px;
}

.category h3 {
  font-size: 15px;
}

.category p {
  color: #70889a;
  font-size: 12px;
  margin-top: 4px;
}


/* REPORT */

.report-section {
  max-width: 1240px;
  margin: auto;
  padding: 100px 28px;
}

.report-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;

  overflow: hidden;

  border:
    1px solid rgba(53,217,255,.16);

  border-radius: 25px;

  background:
    linear-gradient(
      120deg,
      #071421,
      #040b12
    );

  box-shadow: var(--shadow);
}

.report-info {
  padding: 60px;
}

.report-info h2 {
  font-size: 47px;
  line-height: 1.04;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}

.report-info p {
  color: var(--muted);
  font-size: 13px;
}

.checks {
  margin-top: 30px;

  display: grid;

  gap: 11px;

  color: #9bb3c3;

  font-size: 11px;
}

#reportForm {
  padding: 50px;

  display: grid;

  gap: 15px;

  background: rgba(255,255,255,.025);
}

#reportForm label {
  display: grid;

  gap: 7px;

  color: #86a0b3;

  font-size: 11px;
}

#reportForm input,
#reportForm select,
#reportForm textarea {
  width: 100%;

  padding: 13px;

  border:
    1px solid var(--border);

  border-radius: 10px;

  outline: none;

  background: #050d15;

  color: white;

  font: inherit;

  font-size: 12px;
}

#reportForm input:focus,
#reportForm select:focus,
#reportForm textarea:focus {
  border-color:
    rgba(53,217,255,.5);

  box-shadow:
    0 0 0 3px rgba(53,217,255,.06);
}

.optional {
  color: #4e6c80;
}

.submit {
  width: 100%;
  border: 0;
}

.form-note {
  text-align: center;

  color: #536b7c;

  font-size: 9px;
}

.form-message {
  display: none;

  padding: 12px;

  border-radius: 9px;

  font-size: 11px;
}

.form-message.show {
  display: block;
}


/* FAQ */

.faq-section {
  max-width: 850px;
}

.faq {
  border-top:
    1px solid var(--border);
}

details {
  padding: 21px 0;

  border-bottom:
    1px solid var(--border);
}

summary {
  display: flex;

  justify-content: space-between;

  cursor: pointer;

  font-size: 14px;

  font-weight: 600;

  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";

  color: #597b8f;

  font-size: 19px;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 700px;

  padding-top: 12px;

  color: #748b9d;

  font-size: 12px;
}


/* FINAL */

.final {
  max-width: 1184px;

  margin: 80px auto 110px;

  padding: 55px;

  display: flex;

  align-items: center;

  gap: 28px;

  border:
    1px solid var(--border);

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(0,137,255,.12),
      transparent 35%
    ),
    #07111c;
}

.final-dolphin {
  font-size: 68px;

  filter:
    drop-shadow(
      0 0 25px rgba(53,217,255,.35)
    );
}

.final h2 {
  font-size: 39px;

  line-height: 1.05;

  letter-spacing: -.045em;
}

.final h2 span {
  color: var(--cyan);
}

.final p {
  color: #71899b;

  font-size: 12px;

  margin-top: 7px;
}

.final .button {
  margin-left: auto;
}


/* FOOTER */

footer {
  max-width: 1184px;

  margin: auto;

  padding: 35px 28px 50px;

  border-top:
    1px solid var(--border);
}

.footer-top {
  display: grid;

  grid-template-columns: 1fr 2fr 1fr;

  gap: 25px;

  align-items: center;
}

.footer-logo {
  font-weight: 800;

  letter-spacing: .12em;
}

.footer-top p {
  color: #5d7587;

  font-size: 10px;

  text-align: center;
}

.footer-links {
  display: flex;

  justify-content: flex-end;

  gap: 18px;

  color: #7890a2;

  font-size: 10px;
}

.copyright {
  margin-top: 30px;

  color: #3f5869;

  text-align: center;

  font-size: 9px;
}


/* ANIMATIONS */

@keyframes floating {

  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}

@keyframes scan {

  0% {
    top: -5%;
  }

  100% {
    top: 105%;
  }

}

.telegram-button {
  border-color: rgba(53,217,255,.25);
  color: #d9f7ff;
  background: rgba(34,158,217,.08);
}

.telegram-button:hover {
  background: rgba(34,158,217,.15);
  border-color: rgba(53,217,255,.5);
  transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 900px) {

  nav,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  nav.open {
    display: flex;

    position: absolute;

    top: 70px;

    left: 20px;
    right: 20px;

    padding: 20px;

    flex-direction: column;

    background: #07111c;

    border:
      1px solid var(--border);

    border-radius: 14px;
  }

  .hero {
    grid-template-columns: 1fr;

    padding-top: 55px;
  }

  .hero-visual {
    height: 450px;
  }

  .stats {
    margin-left: 20px;
    margin-right: 20px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step {
    border-bottom:
      1px solid var(--border);
  }

  .report-panel {
    grid-template-columns: 1fr;
  }

  .final {
    margin-left: 20px;
    margin-right: 20px;

    flex-wrap: wrap;
  }

  .final .button {
    margin-left: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .navbar {
    padding: 0 18px;
  }

  .logo-image-wrapper {
    width: 34px;
    height: 34px;

    min-width: 34px;
    min-height: 34px;

    flex-basis: 34px;
  }

  .logo-image-wrapper img {
    width: 34px !important;
    height: 34px !important;

    min-width: 34px !important;
    min-height: 34px !important;

    max-width: 34px !important;
    max-height: 34px !important;
  }

  .logo {
    font-size: 15px;
  }

  .hero {
    padding:
      50px 18px 60px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-visual {
    transform: scale(.82);

    margin:
      -30px -35px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;

    padding: 10px;
  }

  .stat {
    padding: 20px 5px;

    border-bottom:
      1px solid var(--border);
  }

  .section {
    padding:
      65px 18px;
  }

  .section-heading h2,
  .split-heading h2 {
    font-size: 38px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-left:
      1px solid var(--border);
  }

  .split-heading {
    display: block;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .report-section {
    padding:
      60px 18px;
  }

  .report-info {
    padding: 40px 25px;
  }

  .report-info h2 {
    font-size: 37px;
  }

  #reportForm {
    padding: 25px 18px;
  }

  .final {
    padding: 32px 24px;
  }

  .final h2 {
    font-size: 33px;
  }

  .final-dolphin {
    font-size: 55px;
  }
}
  /* ===============================
   DELFINI SNOW BACKGROUND
   =============================== */

.snow-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.snowflake {
  position: absolute;
  top: -20px;

  width: var(--size);
  height: var(--size);

  border-radius: 50%;
  background: var(--snow-color);
  opacity: var(--opacity);

  box-shadow:
    0 0 6px var(--snow-color),
    0 0 14px rgba(53, 217, 255, 0.25);

  animation:
    snowfall var(--duration) linear infinite,
    snowSway var(--sway-duration) ease-in-out infinite alternate;
}


@keyframes snowfall {

  0% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(calc(100vh + 40px));
  }

}

@keyframes snowSway {

  from {
    margin-left: -15px;
  }

  to {
    margin-left: 15px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .snowflake {
    animation: none;
    display: none;
  }

}

/* ===============================
   DELFINI REPORT CATEGORY LIST
   =============================== */

.report-category-list {
  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background:
    rgba(7, 17, 28, .68);
}


.report-category-item {
  width: 100%;
  min-height: 60px;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border: 0;

  border-bottom:
    1px solid var(--border);

  background: transparent;

  color: var(--white);

  font: inherit;
  font-size: 14px;
  font-weight: 650;

  text-align: left;

  cursor: pointer;

  transition:
    background .2s,
    padding-left .2s;
}


.report-category-item:last-child {
  border-bottom: 0;
}


.report-category-item:hover {
  background:
    rgba(53, 217, 255, .045);

  padding-left: 25px;
}


.category-actions {
  display: flex;
  align-items: center;

  gap: 15px;

  flex-shrink: 0;
}


.category-actions i {
  color: #66859a;

  font-size: 25px;
  line-height: 1;

  font-style: normal;
  font-weight: 300;
}


/* BADGES */

.severity {
  padding: 4px 8px;

  border-radius: 6px;

  font-size: 9px;
  line-height: 1;

  letter-spacing: .04em;
  font-weight: 800;
}


/* RED */

.severity.priority {
  color: #ff6868;

  border:
    1px solid rgba(255, 82, 82, .38);

  background:
    rgba(255, 61, 61, .10);
}


/* YELLOW */

.severity.high {
  color: #ffd34f;

  border:
    1px solid rgba(255, 196, 45, .35);

  background:
    rgba(255, 196, 45, .10);
}


/* MOBILE */

@media (max-width: 600px) {

  .report-category-item {
    min-height: 56px;

    padding:
      0 14px;

    font-size: 13px;
  }


  .report-category-item:hover {
    padding-left: 17px;
  }


  .category-actions {
    gap: 10px;
  }


  .severity {
    font-size: 8px;

    padding:
      4px 6px;
  }

}