:root {
  --navy: #0b2a3a;
  --teal: #0c5f66;
  --teal-soft: #3f8e8a;
  --sand: #f7f1e3;
  --mist: #e9f1f4;
  --paper: #fffdf9;
  --ink: #17303f;
  --muted: #566a75;
  --border: rgba(15, 54, 70, 0.12);
  --shadow-lg: 0 28px 70px rgba(11, 42, 58, 0.16);
  --shadow-md: 0 16px 40px rgba(11, 42, 58, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(63, 142, 138, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(255, 183, 77, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, #fbf6ea 0%, #eef6f7 42%, #f7fbfc 100%);
}

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

.page-shell {
  overflow: hidden;
}

.glass-nav {
  padding: 1rem 0;
  background: rgba(11, 42, 58, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.96rem;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #fff;
}

.navbar-brand img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  padding: 0.3rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.navbar-toggler {
  padding: 0.25rem 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0 0.3rem;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.nav-cta {
  margin-left: 1rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.92rem 1.45rem;
}

.btn-brand {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #0f6c74 0%, #0b2a3a 100%);
  box-shadow: 0 18px 36px rgba(12, 95, 102, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #127f89 0%, #0b2a3a 100%);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid rgba(11, 42, 58, 0.14);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--ink);
  border-color: rgba(11, 42, 58, 0.24);
  background: #fff;
}

.hero-section {
  position: relative;
  padding: 10rem 0 5rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -8%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 95, 102, 0.28), transparent 68%);
  filter: blur(24px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  animation: liftIn 0.7s ease both;
}

.hero-copy h1 {
  animation: liftIn 0.8s ease 0.08s both;
}

.hero-copy p {
  animation: liftIn 0.85s ease 0.14s both;
}

.eyebrow,
.section-kicker,
.light-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: #0f6c74;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 108, 116, 0.12);
}

.light-kicker {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-copy h1,
.section-heading h2,
.section-title-left,
.cta-panel h2,
.contact-card h3,
.solution-card h3,
.process-card h3,
.problem-item h3,
.insight-card h3,
.integration-card h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-copy p {
  margin: 1.4rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  animation: liftIn 0.9s ease 0.2s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
  animation: liftIn 0.95s ease 0.28s both;
}

.stat-chip {
  min-width: 10.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 54, 70, 0.08);
  box-shadow: 0 16px 30px rgba(11, 42, 58, 0.08);
}

.stat-chip strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
}

.stat-chip span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(246, 252, 252, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg);
  animation:
    liftIn 0.95s ease 0.18s both,
    floatPanel 6s ease-in-out 1.2s infinite;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0f6c74 0%, #17303f 100%);
}

.panel-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.mock-upload {
  padding: 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(235, 245, 247, 0.9)
    ),
    #fff;
}

.mock-row + .mock-row {
  margin-top: 1rem;
}

.field-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.field-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.92rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(11, 42, 58, 0.12);
  background: #fff;
  color: var(--ink);
}

.field-box i {
  color: #c63d2c;
  font-size: 1.1rem;
}

.field-box.muted-box i {
  color: var(--teal);
}

.status-badge {
  margin-left: auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(12, 95, 102, 0.12);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
}

.steps-panel {
  margin-top: 1rem;
  padding: 0.55rem;
  border-radius: 1.1rem;
  background: rgba(11, 42, 58, 0.04);
}

.step-line {
  display: flex;
  align-items: start;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 0.9rem;
}

.step-line + .step-line {
  margin-top: 0.25rem;
}

.step-line span {
  min-width: 3.3rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  color: var(--navy);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.85);
}

.step-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.step-line.active {
  background: rgba(255, 255, 255, 0.85);
}

.download-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: var(--navy);
  background: rgba(255, 187, 94, 0.18);
  border: 1px solid rgba(255, 187, 94, 0.25);
}

.download-chip i {
  color: #b66d1f;
}

.hero-visual {
  width: 100%;
  margin-top: 1.2rem;
  border-radius: 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.trust-ribbon {
  padding: 0 0 2rem;
}

.ribbon-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.8rem;
  border-radius: 1rem;
  color: var(--navy);
  background: rgba(246, 252, 252, 0.9);
}

.ribbon-item i {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0f6c74 0%, #17303f 100%);
}

.content-section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.section-heading h2,
.section-title-left {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading p,
.section-copy-left,
.cta-panel p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.problem-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 183, 77, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #0b2a3a 0%, #194759 100%);
  box-shadow: var(--shadow-lg);
}

.card-badge {
  display: inline-flex;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.problem-item + .problem-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.problem-item i {
  flex: 0 0 auto;
  margin-top: 0.3rem;
  color: #ffd68d;
  font-size: 1.2rem;
}

.problem-item h3 {
  margin: 0;
  font-size: 1.28rem;
}

.problem-item p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  height: 100%;
}

.solution-card,
.process-card,
.integration-card,
.insight-card,
.contact-card {
  border: 1px solid rgba(15, 54, 70, 0.08);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.solution-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  animation: liftIn 0.75s ease both;
}

.solution-card i {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0f6c74 0%, #17303f 100%);
}

.solution-card h3 {
  margin: 1.1rem 0 0;
  font-size: 1.35rem;
}

.solution-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.flow-section {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 249, 0.4),
    rgba(234, 243, 245, 0.62)
  );
}

.sticky-visual-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-card {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  animation: liftIn 0.75s ease both;
}

.process-number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(12, 95, 102, 0.1);
}

.process-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.process-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.accent-card {
  background: linear-gradient(
    180deg,
    rgba(255, 248, 230, 0.9),
    rgba(255, 255, 255, 0.92)
  );
}

.documents-section {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 183, 77, 0.14),
      transparent 18%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.16));
}

.formats-panel,
.insight-board {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 54, 70, 0.08);
  box-shadow: var(--shadow-lg);
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.format-chip {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: var(--navy);
  font-weight: 700;
  background: rgba(233, 241, 244, 0.84);
  border: 1px solid rgba(15, 54, 70, 0.08);
}

.board-label {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0f6c74 0%, #17303f 100%);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.insight-card {
  padding: 1.35rem;
  border-radius: 1.4rem;
  animation: liftIn 0.75s ease both;
}

.insight-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.insight-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.video-section {
  background: linear-gradient(
    180deg,
    rgba(237, 247, 248, 0.4),
    rgba(255, 252, 245, 0.2)
  );
}

.video-shell {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: #0e2330;
  box-shadow: var(--shadow-lg);
}

.video-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.video-preview {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #102f40;
}

.play-anchor {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin-left: -2.5rem;
  margin-top: -2.5rem;
  border-radius: 50%;
  color: #0e2330;
  font-size: 1.45rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.play-anchor:hover,
.play-anchor:focus {
  color: #0e2330;
  transform: scale(1.04);
}

.video-caption {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.mini-checks {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.mini-checks div,
.security-list div {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 54, 70, 0.08);
}

.mini-checks i,
.security-list i {
  color: var(--teal);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.integration-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  animation: liftIn 0.78s ease both;
}

.integration-card i {
  color: var(--teal);
  font-size: 1.35rem;
}

.integration-card h3 {
  margin: 1rem 0 0;
  font-size: 1.26rem;
}

.integration-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.security-section {
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(63, 142, 138, 0.12),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(242, 247, 249, 0.44)
    );
}

.security-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.security-visual {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 54, 70, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-section {
  padding-bottom: 7rem;
}

.cta-panel {
  position: relative;
  padding: 2.4rem;
  border-radius: 2rem;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 183, 77, 0.26),
      transparent 22%
    ),
    linear-gradient(135deg, #0d3947 0%, #10304d 55%, #0f6c74 100%);
  box-shadow: 0 28px 65px rgba(11, 42, 58, 0.22);
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.contact-card {
  padding: 1.6rem;
  border-radius: 1.6rem;
  color: var(--ink);
}

.contact-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.contact-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
}

.career-note {
  margin-top: 1.35rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(233, 241, 244, 0.7);
}

.career-note strong {
  display: block;
  color: var(--navy);
}

.career-note p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  padding: 0 0 3rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.solution-card:nth-child(2),
.process-card:nth-child(2),
.insight-card:nth-child(2),
.integration-card:nth-child(2) {
  animation-delay: 0.08s;
}

.solution-card:nth-child(3),
.process-card:nth-child(3),
.insight-card:nth-child(3),
.integration-card:nth-child(3) {
  animation-delay: 0.16s;
}

.solution-card:nth-child(4),
.process-card:nth-child(4),
.insight-card:nth-child(4),
.integration-card:nth-child(4) {
  animation-delay: 0.24s;
}

.process-card:nth-child(5),
.integration-card:nth-child(5) {
  animation-delay: 0.32s;
}

.process-card:nth-child(6) {
  animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1199.98px) {
  .integration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .glass-nav {
    padding: 0.9rem 0;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(9, 30, 42, 0.92);
  }

  .nav-cta {
    margin: 0.85rem 0 0;
  }

  .hero-section {
    padding-top: 8.5rem;
  }

  .ribbon-wrap,
  .integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-grid,
  .process-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-copy h1 {
    max-width: none;
  }

  .content-section {
    padding: 4.75rem 0;
  }

  .hero-panel,
  .problem-card,
  .formats-panel,
  .insight-board,
  .cta-panel {
    padding: 1.4rem;
  }

  .ribbon-wrap,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .panel-topline,
  .video-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
