.sea06 {
  font-family: 'sinter', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #333;
  color: var(--text-body);

}

/* Default Theme (NAVSEA Dark) - Theme tokens */
.sea06 {
  --skew-angle: -15deg;

  /* ===== NAVSEA BRAND COLORS (Direct Color Values) ===== */
  /* Primary Blues */
  --navsea-blue-darkest: #001f3f;
  --navsea-blue-dark: #002F70;
  --navsea-blue-medium: #094E91;
  --navsea-blue-base: #1F78BC;
  --navsea-blue-light: #6FCEEE;
  --navsea-blue-lighter: #C1E7F7;

  /* Accent Gold */
  --navsea-gold-dark: #b67411;
  --navsea-gold-medium: #CB8B2A;
  --navsea-gold-base: #EAA222;
  --navsea-gold-light: #FDC010;
  --navsea-gold-lighter: #FBE5A0;

  /* Neutral Colors */
  --navsea-white: #FFFFFF;
  --navsea-black: #000000;
  --navsea-gray-dark: #43484e;
  --navsea-gray: #475569;
  --navsea-gray-medium: #94a3b8;
  --navsea-gray-light: #C6CCD0;
  --navsea-gray-soft: #f0f2f4;
  --navsea-gray-muted: rgba(15, 23, 42, 0.68);
  --navsea-gray-very-muted: rgba(15, 23, 42, 0.6);

  /* Status Colors */
  --navsea-red-dark: #BF3437;
  --navsea-red-medium: #EB2427;
  --navsea-red-light: #F1684C;
  --navsea-red-lighter: #F68C5B;

  --navsea-green-dark: #30955E;
  --navsea-green-medium: #38B56B;
  --navsea-green-light: #81C56C;

  /* ============================
   *  SURFACES (background roles)
   * ============================ */

  /* Page + large sections */
  --surface-page: var(--navsea-white);
  --surface-section-light: var(--navsea-gray-soft);
  --surface-section-dark: var(--navsea-blue-darkest);
  --surface-section-muted: var(--navsea-gray-light);
  --surface-section-muted-dark: var(--navsea-gray);

  /* Dark blue for hero/contrast sections */
  --surface-section-primary: var(--navsea-blue-medium);
  --surface-section-primary-hover: var(--navsea-blue-light);
  --surface-section-primary-active: var(--navsea-blue-dark);
  --surface-section-black: var(--navsea-black);
  --surface-section-black-hover: var(--navsea-gray-medium);
  --surface-section-black-active: var(--navsea-gray-light);


  /* Cards / elevated panels */

  --surface-section-tagline: var(--navsea-blue-darkest);
  --surface-card: var(--navsea-white);
  --surface-muted: var(--navsea-gray-soft);

  --overlay-dark: rgba(0, 0, 0, 0.85);
  --overlay-medium: rgba(0, 0, 0, 0.65);
  --overlay-light: rgba(0, 0, 0, 0.15);
  --overlay-lighter: rgba(0, 0, 0, 0.05);
  --overlay-primary-dark: color-mix(in srgb, var(--navsea-black) 55%, transparent);
  --overlay-white: rgba(255, 255, 255, 0.65);


  /* ============================
   *  TEXT (content roles)
   * ============================ */

  --text-body: var(--navsea-gray);
  --text-muted: var(--navsea-gray-light);
  --text-heading: var(--navsea-blue-dark);
  --text-on-dark: var(--navsea-white);
  --text-on-dark-muted: var(--navsea-gray-soft);
  --text-on-accent: var(--navsea-black);


  /* ============================
   *  PRIMARY & ACCENT (brand colors)
   * ============================ */

  /* Primary brand = blue */
  --primary: var(--navsea-blue-base);
  /* #1F78BC */
  --primary-soft: var(--navsea-blue-lighter);
  /* #C1E7F7 */
  --primary-strong: var(--navsea-blue-medium);
  --primary-dark: var(--navsea-blue-dark);
  /* #094E91 */
  --primary-border: var(--navsea-blue-medium);

  /* Secondary accent = gold highlight */
  --accent: var(--navsea-gold-base);
  /* #EAA222 */
  --accent-strong: var(--navsea-gold-medium);
  --accent-soft: var(--navsea-gold-light);


  /* ============================
   *  BUTTONS
   * ============================ */

  --btn-bg: var(--primary);
  /* primary blue button */
  --btn-bg-hover: var(--primary-strong);
  --btn-bg-active: var(--navsea-blue-dark);
  --btn-fg: var(--text-on-accent);
  --btn-border: var(--primary-border);

  /* Ghost / outline button */
  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: var(--primary-soft);
  --btn-ghost-fg: var(--primary);
  --btn-ghost-border: var(--primary-border);

  /* Disabled state */
  --btn-disabled-bg: var(--navsea-gray-light);
  --btn-disabled-fg: var(--navsea-gray-very-muted);
  --btn-disabled-border: var(--navsea-gray-light);


  /* ============================
   *  LINKS
   * ============================ */

  --link: var(--navsea-blue-base);
  --link-hover: var(--navsea-blue-medium);
  --link-visited: var(--navsea-blue-dark);


  /* ============================
   *  BORDERS & DIVIDERS
   * ============================ */

  --border-subtle: var(--navsea-gray-light);
  --border-strong: var(--navsea-gray);
  --border-on-dark: rgba(255, 255, 255, 0.28);


  /* ============================
   *  INPUTS / FORMS
   * ============================ */

  --input-bg: var(--navsea-white);
  --input-fg: var(--text-body);
  --input-border: var(--navsea-gray-light);
  --input-border-hover: var(--navsea-gray);
  --input-border-focus: var(--primary);
  --input-placeholder: var(--navsea-gray-muted);


  /* ============================
   *  STATUS COLORS
   * ============================ */

  --success: var(--navsea-green-medium);
  /* #38B56B */
  --success-soft: var(--navsea-green-light);
  /* #81C56C */

  --danger: var(--navsea-red-medium);
  /* #EB2427 */
  --danger-soft: var(--navsea-red-lighter);
  /* #F68C5B */

  --warning: var(--navsea-gold-medium);
  --warning-soft: var(--navsea-gold-light);


  /* ============================
   *  SHADOWS / ELEVATION
   * ============================ */

  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.10);
  --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.18);
  --shadow-focus-ring: 0 0 0 3px rgba(31, 120, 188, 0.45);
  /* based on blue-base */
}

/* ============================================================================
   LAYOUT & RESET
   ============================================================================ */
.sea06-body {
  margin: 0;
  background-color: #333;
  color: var(--theme-text-primary);
  font-family: "magno-sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sea06-page-bg {
  padding: 0;
}

.sea06-container {
  width: 100%;
  max-width: 1164px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 0px;
  background: linear-gradient(to bottom,
      var(--surface-section-dark) 0%,
      var(--surface-section-dark) 60%,
      var(--surface-section-light) 100%);
  color: var(--text-body);
}

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

.sea06 .sea06-main {
  margin-top: -80px;
}

.sea06 h1 {
  font-family: 'magno-sans-variable', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-stretch: 110%;
  font-size: 32px;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.sea06 h2,
.sea06 h3 {
  font-family: 'sinter', Arial, sans-serif;
  font-weight: 700;
  color: var(--text-heading);
}

.sea06 h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.sea06 h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.sea06 h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.sea06 p {
  color: var(--text-body);
}

.sea06 a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sea06 a:hover,
.sea06 a:focus-visible {
  color: var(--link-hover);
}

.sea06 strong {
  font-weight: 600;
  color: var(--accent);
}

/* Buttons */
.sea06 .sea06-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sea06 .sea06-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus-ring);
}

.sea06 .sea06-btn-ghost {
  background-color: var(--btn-ghost-bg);
  color: var(--btn-ghost-fg);
  border-color: var(--btn-ghost-border);
}

.sea06 .sea06-btn-ghost:hover,
.sea06 .sea06-btn-ghost:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--btn-ghost-fg);
}

.sea06 .sea06-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.sea06 .sea06-btn:hover .sea06-btn-icon,
.sea06 .sea06-btn:focus-visible .sea06-btn-icon {
  transform: translateX(4px);
}

.sea06 .sea06-section {
  padding: 32px;
  background-color: var(--surface-section-light);
  color: var(--text-body);
}

.sea06 .sea06-section[id] {
  scroll-margin-top: 180px;
  /* 160px header + 20px spacing */
}

.sea06 .sea06-section-header {
  margin-bottom: 24px;
}

.sea06 .sea06-section-header h2 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 8px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 24px;
  line-height: 1;
}

.sea06 .sea06-section-header p {
  font-size: 18px;
  font-weight: 300;
}

.sea06 .sea06-section-dark {
  padding: 32px;
  background-color: var(--surface-section-dark);
  color: var(--text-on-dark);
}

.sea06 .sea06-section-dark .sea06-section-header h2 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 8px solid var(--accent);
  color: var(--text-on-dark);
}

.sea06 .sea06-section-dark .sea06-section-header p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-on-dark-muted);
}

.sea06 .sea06-section-medium {
  padding: 32px;
  background-color: var(--surface-section-muted);
  color: var(--text-body);
}

.sea06 .sea06-section-medium .sea06-section-header h2 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 8px solid var(--primary);
}

.sea06 .sea06-section-medium .sea06-section-header p {
  font-size: 18px;
  font-weight: 300;
}

.sea06 .sea06-section-light {
  background-color: var(--surface-card);
  color: var(--text-body);
}

.sea06 .sea06-section-light h2,
.sea06 .sea06-section-light h3 {
  color: var(--text-heading);
}

.sea06 .sea06-section-light p {
  color: var(--text-body);
}

.sea06 .sea06-section-muted {
  background-color: var(--surface-section-muted);
  color: var(--text-body);
}

.sea06 .sea06-photo-text {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.sea06 .sea06-photo-text img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-medium);
}

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

.sea06 .sea06-card {
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 16px 18px;
  background: linear-gradient(140deg,
      color-mix(in srgb, var(--surface-card) 85%, var(--surface-muted)),
      var(--surface-card));
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-card p {
  font-size: 14px;
  line-height: 1.5;
}

.sea06 .sea06-pillars {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px 32px 20px;
  gap: 20px;
}

.sea06 .sea06-pillar {
  flex: 1;
  background: linear-gradient(140deg,
      color-mix(in srgb, var(--surface-card) 80%, transparent),
      var(--surface-card));
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.sea06 .sea06-pillar h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-heading);
}

.sea06 .sea06-pillar p {
  font-size: 18px;
}

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

.sea06 .sea06-steps-grid-coming-soon {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

.sea06 .sea06-step {
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 16px 18px;
  background: linear-gradient(140deg,
      color-mix(in srgb, var(--surface-card) 85%, var(--surface-muted)),
      var(--surface-card));
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-step p {
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

.typewriter {
  overflow: hidden;
  border-right: 0.15em solid var(--accent-soft);
  white-space: nowrap;
  margin: 0 auto;
  animation:
    typing 3s steps(40, end),
    blink-caret .75s step-end infinite;
}

.delay-typewriter {
  overflow: hidden;
  border-right: 0.15em solid var(--accent-soft);
  white-space: nowrap;
  margin: 0 auto;
  width: 0;
  animation: none;
}

.delay-typewriter.animate {
  animation:
    typing 2s steps(40, end) 1s forwards,
    blink-caret .75s step-end infinite;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 0s forwards;
}

.delay-fade-in {
  opacity: 0;
  animation: none;
}

.delay-fade-in.animate {
  animation: fadeIn 0.5s ease-in-out 3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--accent-soft);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.sea06 .sea06-horizontal-menu {
  position: sticky;
  top: 0;
  width: 100%;
  height: 160px;
  background-color: transparent;
  margin-bottom: 10px;
  padding: 0;
  z-index: 1000;
}

.sea06 .sea06-menu-title {
  font-size: 24px;
  color: var(--text-heading);
  padding: 0 0 0 190px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: var(--surface-card);
  height: 40px;
  display: flex;
  align-items: center;
}

.sea06 .sea06-menu-bar {
  position: absolute;
  height: 100px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 10px 40px;
  margin: 0 auto;
  max-width: 1164px;
  width: 100%;
  /* background-color: var(--surface-section-dark); */
  background: linear-gradient(to right,
  var(--surface-section-dark),
  var(--surface-section-primary-active));
}

.sea06 .sea06-menu-logo-container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sea06 .sea06-menu-logo-text {
  align-self: flex-end;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-on-dark);
}

.sea06 .sea06-menu-items {
  list-style: none;
  margin: 0 0 0 140px;
  padding: 0;
  display: flex;
  height: 100%;
  width: calc(100% - 140px);
}

.sea06 .sea06-menu-items li {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
}

.sea06 .sea06-menu-items li:last-child {
  border-right: none;
}

.sea06 .sea06-menu-items a {
  color: var(--text-on-dark);
  font-family: 'sinter', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 24px;
  font-size: 18px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.sea06 .sea06-menu-items a:hover,
.sea06 .sea06-menu-items a:focus-visible {
  background-color: color-mix(in srgb, var(--primary) 35%, transparent);
  color: var(--text-on-dark);
}

.sea06 .sea06-menu-items a:active,
.sea06 .sea06-menu-items a.active {
  background-color: color-mix(in srgb, var(--primary) 65%, transparent);
}

.sea06 .sea06-menu-seal {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
}

.sea06 .sea06-seal-image {
  height: 90%;
  width: auto;
  display: block;
}

.sea06 .sea06-menu-logo {
  height: 100%;
  width: auto;  
}
/* Local Page Navigation */
.sea06 .sea06-nav {
  background-color: var(--surface-section-black);
  padding-left: 130px;
}

.sea06 .sea06-nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 32px;
}

.sea06 .sea06-nav-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sea06 .sea06-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

.sea06 .sea06-nav-list li {
  position: relative;
  padding-right: 18px;
  margin-right: 18px;
}

.sea06 .sea06-nav-list li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) skewX(-20deg);
  width: 1px;
  height: 18px;
  background-color: var(--surface-section-black-hover);
}

.sea06 .sea06-nav-list li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.sea06 .sea06-nav-list li:last-child::after {
  display: none;
}

.sea06 .sea06-nav-list a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-on-dark);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.sea06 .sea06-nav-list a:hover,
.sea06 .sea06-nav-list a:focus-visible {
  text-decoration: underline;
}

/* ============================================================================
   MODAL STYLES
   ============================================================================ */

.sea06-image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.sea06-video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.sea06-video-modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 95vw;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sea06-modal-video-enlarged {
  max-width: 95vw;
  max-height: 95vh;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sea06-modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 95vw;
  max-width: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sea06-modal-image-enlarged {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sea06-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.sea06-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ============================================================================
   HERO & OVERVIEW
   ============================================================================ */

.sea06 .sea06-hero-section {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  padding: 60px 60px;
}

.sea06 .sea06-hero-section p {
  color: var(--text-on-dark);
  font-size: 24px;
}

.sea06 .sea06-hero-content {
  position: relative;
  color: var(--text-on-dark);
  text-align: left;
  text-shadow: 0 2px 6px color-mix(in srgb, var(--surface-section-dark) 80%, transparent);
}

.sea06-hero-home {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /*   background-position: top -60px center !important;*/
  background-image:
    linear-gradient(to right,
      color-mix(in srgb, var(--overlay-dark) 85%, transparent),
      color-mix(in srgb, var(--overlay-light) 25%, transparent)),
    url("../photos/bg-destroyers-incoming.jpg");
}

.sea06 .sea06-overview-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sea06 .sea06-overview-content .sea06-section-header {
  margin-bottom: 40px;
  opacity: 0;
  animation: none;
}

.sea06 .sea06-overview-content.animate .sea06-section-header {
  animation: slideInFromLeft 0.6s ease-out forwards;
}

.sea06 .sea06-overview-content .sea06-section-header:nth-child(1) {
  animation-delay: 0s;
}

.sea06 .sea06-overview-content .sea06-section-header:nth-child(2) {
  animation-delay: 1.5s;
}

.sea06 .sea06-overview-content .sea06-section-header:nth-child(3) {
  animation-delay: 3s;
}

.sea06 .sea06-overview-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-on-dark);
  border-left: 8px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px color-mix(in srgb, var(--surface-section-dark) 80%, transparent);
}

.sea06 .sea06-overview-content p {
  font-size: 24px;
  font-weight: 500;
  margin-left: 16px;
  color: var(--text-on-dark);
}

.sea06 .sea06-video-section {
  position: relative;
  background-color: #000;
  overflow: hidden;
  padding: 40px 0px;
}

.sea06 .sea06-video-container {
  position: relative;
  overflow: hidden;
}

.sea06 .sea06-video-content {

  width: max-content;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sea06 .sea06-video-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-on-dark);
}

.sea06 .sea06-video-content p {
  font-size: 24px;
  font-weight: 500;
  margin-left: 16px;
  color: var(--text-on-dark);
}

.sea06 .sea06-video-modal-link {
  opacity: 1;
  font-size: 28px;
  /*   animation: fadeIn 0.5s ease-in-out 0s forwards; */
}

.sea06 .sea06-video-container {
  position: relative;
  min-height: 654px;
  overflow: hidden;
  object-fit: cover;
}

.sea06 .sea06-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ============================================================================
   SPLIT SECTIONS
   ============================================================================ */
/* --- Split Layout Sections --- */
.sea06 .split-section {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 300px;
  border-top: 4px solid var(--accent);
  /* Important to crop the skewed edges */
}

.sea06 .last-split-section {
  border-bottom: 4px solid var(--accent);
}

/* The Box that holds the image (Left or Right) */
.sea06 .img-col {
  flex: 1;
  width: 600px;
  background-color: #ccc;
  /* Placeholder Color */
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

/* The Box that holds the text (Left or Right) */
.sea06 .text-col {
  flex: 1;
  /* background-color: var(--navsea-blue-dark); */
  background: linear-gradient(105deg, var(--surface-section-dark), var(--surface-section-dark) 40%, var(--primary-dark) 60%, var(--surface-section-dark) 80%);
  color: var(--text-on-dark-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Large padding for spacing */
  position: relative;
  z-index: 2;
  min-height: 100%;
  /* Text sits on top */
}

/* Typography within sections */
.sea06 .text-col h2 {
  color: var(--text-on-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 8px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 24px;
  line-height: 1;
}

.sea06 .text-col p {
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--text-on-dark);
  margin: 0 40px;
}

.sea06 .text-col::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  /* width: calc(tan(abs(var(--skew-angle))) * 250px); */
  background-color: var(--surface-section-dark);
  /* Match the text column background */
  z-index: -1;
  transform: skewX(var(--skew-angle));
  /* The Diagonal Slant */
  box-shadow: -12px 0px 12px rgba(0, 0, 0, 0.3)
    /* Subtle depth shadow */
}

.sea06 .split-section:not(.reverse) .text-col::before {
  left: -80px;
  /* Pull it to the left to overlap the image */
  border-left: 4px solid var(--accent);
  /* The Gold Divider Line */
}

.sea06 .split-section.reverse {
  flex-direction: row-reverse;
  /* Swap the flex order */
}

.sea06 .split-section.reverse .text-col h2 {
  margin-left: 32px;
}

.sea06 .split-section.reverse .text-col p {
  margin-left: 72px;
}

.sea06 .split-section.reverse .text-col::before {
  right: -80px;
  /* Push it to the right to overlap the image */
  border-right: 4px solid var(--accent);
  /* The Gold Divider Line */
  box-shadow: 12px 0px 12px rgba(0, 0, 0, 0.3)
    /* Subtle depth shadow */
}

/* Placeholder backgrounds for the Image Columns */
.sea06 .img-purpose {
  background-image: linear-gradient(to right,
      color-mix(in srgb, var(--overlay-dark) 85%, transparent),
      color-mix(in srgb, var(--overlay-light) 25%, transparent)),
    url('../photos/home-split1.jpg');
}

.sea06 .img-mission {
  background-image: linear-gradient(to right,
      color-mix(in srgb, var(--overlay-dark) 85%, transparent),
      color-mix(in srgb, var(--overlay-light) 25%, transparent)),
    url('../photos/home-split2.jpg');
}

.sea06 .img-vision {
  background-image: linear-gradient(to right,
      color-mix(in srgb, var(--overlay-dark) 85%, transparent),
      color-mix(in srgb, var(--overlay-light) 25%, transparent)),
    url('../photos/home-split3.jpg');
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .sea06 .hero h1 {
    font-size: 2.5rem;
  }

  .sea06 .split-section,
  .sea06 .split-section.reverse {
    flex-direction: column;
    /* Stack vertically */
  }

  .sea06 .img-col {
    min-height: 250px;
    order: 1;
    /* Image always on top on mobile */
  }

  .sea06 .text-col {
    order: 2;
    /* Text always below on mobile */
    padding: 3rem 2rem;
  }

  /* Disable the slant on mobile for a cleaner look, or reduce it */
  .sea06 .text-col::before {
    display: none;
    /* Remove diagonal on mobile */
  }

  /* Add a simple gold top border on mobile instead */
  .sea06 .text-col {
    border-top: 5px solid var(--navsea-gold-base);
  }
}

/* ============================================================================
   MISSION PAGE
   ============================================================================ */

.sea06 .sea06-mission-overview h2 {
  font-size: 32px;
}

.sea06 .sea06-hero-challenges {
  background-image:
    linear-gradient(to right,
      var(--overlay-dark),
      var(--overlay-light)),
    url("../photos/bg-rope-pull.jpg");
}

.sea06 .sea06-challenges-content {

  inset: 0;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.sea06 .sea06-challenges-content h2 {
  font-size: 40px;
  align-self: flex-start;
  color: var(--text-on-dark);
  border-left: 8px solid var(--accent);
  padding-left: 16px;
  text-shadow: 0 2px 6px var(--overlay-dark);
}

.sea06 .sea06-mission-content p {
  font-size: 18px;
  line-height: 1.7;
}

/* ============================================================================
   TRANSFORMATION SECTION (FROM/TO)
   ============================================================================ */

.sea06 .sea06-transformation-section {
  position: relative;
  background-color: var(--navsea-black);
  padding: 0;
  overflow: hidden;
}

.sea06 .sea06-transformation-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: linear-gradient(to right, var(--navsea-blue-darkest) 0%, var(--navsea-blue-darkest) 45%, var(--accent) 55%, var(--accent) 100%);
  position: relative;
  z-index: 10;
}

.sea06 .sea06-transformation-from-label,
.sea06 .sea06-transformation-to-label {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navsea-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sea06 .sea06-transformation-from-label {
  padding-right: 40px;
}

.sea06 .sea06-transformation-to-label {
  padding-left: 40px;
}

.sea06 .sea06-transformation-arrow {
  width: 100px;
  height: 3px;
  background-color: var(--navsea-white);
  position: relative;
}

.sea06 .sea06-transformation-arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--navsea-white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.sea06 .sea06-transformation-container {
  display: grid;
  padding: 0px;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.sea06 .sea06-transformation-from {
  background-color: var(--navsea-black);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.sea06 .sea06-transformation-to {
  background-image:
    linear-gradient(to right,
      var(--overlay-medium),
      var(--overlay-light)),
    url("../photos/bg-splash2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.sea06 .sea06-transformation-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sea06 .sea06-transformation-from .sea06-transformation-heading {
  color: var(--navsea-blue-base);
}

.sea06 .sea06-transformation-to .sea06-transformation-heading {
  color: var(--accent);
  text-shadow: 0 2px 6px var(--overlay-dark);
}

.sea06 .sea06-transformation-ribbons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.sea06 .sea06-transformation-ribbon {
  position: relative;
  padding: 20px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.sea06 .sea06-transformation-from-ribbon {
  background-color: rgba(31, 120, 188, 0.2);
  border-left: 4px solid var(--navsea-blue-base);
  color: var(--navsea-white);
  position: relative;
  height: 70px;
  padding-right: 35px;
  width: 95%;
}

.sea06 .sea06-transformation-from-ribbon::after {
  content: '';
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 35px solid rgba(31, 120, 188, 0.2);
  transition: border-left-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sea06 .sea06-transformation-from-ribbon:hover {
  background-color: rgba(31, 120, 188, 0.4);
  border-left-width: 6px;
  transform: translateX(5px);
  /* box-shadow: 0 4px 12px rgba(31, 120, 188, 0.3); */
}

.sea06 .sea06-transformation-from-ribbon:hover::after {
  border-left-color: rgba(31, 120, 188, 0.4);
}

.sea06 .sea06-transformation-to-ribbon {
  background-color: rgba(234, 162, 34, 0.2);
  border-left: 4px solid var(--accent);
  color: var(--navsea-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.sea06 .sea06-transformation-to-ribbon.revealed {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(234, 162, 34, 0.5);
  border-left-width: 6px;
  /* box-shadow: 0 4px 12px rgba(234, 162, 34, 0.4); */
}

.sea06 .sea06-transformation-to-ribbon.revealed.hover {
  transform: translateX(-10px);
}

.sea06 .sea06-transformation-to-ribbon:hover {
  transform: translateX(-10px);
}

.sea06 .sea06-transformation-ribbon-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

/* Responsive design */
@media (max-width: 1024px) {
  .sea06-transformation-container {
    grid-template-columns: 1fr;
  }

  .sea06-transformation-to {
    background-attachment: scroll;
  }

  .sea06-transformation-banner {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .sea06-transformation-arrow {
    width: 3px;
    height: 40px;
  }

  .sea06-transformation-arrow::after {
    right: auto;
    top: auto;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--navsea-white);
    border-bottom: none;
  }

  .sea06-transformation-from-label,
  .sea06-transformation-to-label {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .sea06-transformation-heading {
    font-size: 32px;
  }

  .sea06-transformation-ribbon-text {
    font-size: 16px;
  }

  .sea06-transformation-from,
  .sea06-transformation-to {
    padding: 40px 20px;
  }

  .sea06-transformation-ribbon {
    padding: 16px 20px;
  }
}

.sea06 .sea06-hero-vision {
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 400px;
  color: var(--text-on-dark);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-image:
    linear-gradient(to right,
      var(--overlay-dark),
      var(--overlay-light)),
    url("../photos/bg-jets-carrier.jpg");
}

.sea06 .sea06-hero-vision-content {
  inset: 0;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.sea06 .sea06-hero-vision-content h2 {
  font-size: 40px;
  align-self: flex-start;
  color: var(--text-on-dark);
  border-left: 8px solid var(--accent);
  padding-left: 16px;
  text-shadow: 0 2px 6px var(--overlay-dark);
}

.sea06 .sea06-fleet-impact {
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 400px;
  color: var(--text-on-dark);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-image:
    linear-gradient(to left,
      var(--overlay-dark),
      var(--overlay-light)),
    url("../photos/bg-fleet-overhead.jpg");
}

.sea06 .sea06-fleet-impact-content {
  inset: 0;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.sea06 .sea06-fleet-impact-content h2 {
  font-size: 40px;
  align-self: flex-start;
  color: var(--text-on-dark);
  border-left: 8px solid var(--accent);
  padding-left: 16px;
  text-shadow: 0 2px 6px var(--overlay-dark);
}

/* ============================================================================
   NEWS PAGE
   ============================================================================ */

.sea06 .todd-talks-section {
  position: relative;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  background: linear-gradient(140deg,
      color-mix(in srgb, var(--surface-card) 90%, transparent) 0%,
      color-mix(in srgb, var(--surface-muted) 75%, transparent) 45%,
      var(--surface-card) 100%);
}

.sea06 .todd-talks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 25%, transparent), transparent 60%);
  opacity: 0.75;
}

.sea06 .todd-talks-section>* {
  position: relative;
  z-index: 1;
}

.sea06 .todd-talks-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.sea06 .todd-talks-host-photo {
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 4px solid color-mix(in srgb, var(--surface-muted) 80%, transparent);
  background-color: var(--surface-card);
}

.sea06 .todd-talks-logo {
  height: auto;
  max-width: 500px;
  align-self: flex-start;
}

.sea06 .todd-talks-header-content {
  display: flex;
  height: 200px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.sea06 .todd-talks-header-content p {
  padding-left: 10px;
  font-size: 24px;
  align-self: flex-end;
}

.sea06 .todd-talks-grid {
  align-items: stretch;
}

.sea06 .todd-talks-grid-coming-soon {
  align-items: stretch;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.sea06 .todd-talks-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sea06 .todd-talks-feature h3 {
  font-size: 22px;
}

.sea06 .todd-talks-feature p+p {
  margin-top: 4px;
}

.sea06 .todd-talks-episodes-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sea06 .todd-talks-episodes-card .todd-talks-episodes {
  flex: 1;
}

.sea06 .todd-talks-episodes {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sea06 .todd-talks-episodes li {
  padding: 10px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-muted) 80%, transparent);
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  line-height: 1.5;
}

.sea06 .todd-talks-episodes strong {
  font-weight: 700;
  color: var(--primary);
}

.sea06 .todd-talks-more {
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sea06 .todd-talks-more::after {
  content: '\2192';
  font-size: 16px;
  transition: transform 0.2s ease;
}

.sea06 .todd-talks-more:hover,
.sea06 .todd-talks-more:focus-visible {
  color: var(--accent);
}

.sea06 .todd-talks-more:hover::after,
.sea06 .todd-talks-more:focus-visible::after {
  transform: translateX(3px);
}

.sea06 .todd-talks-join-card p {
  margin-bottom: 16px;
}

.sea06 .todd-talks-join-card p:last-child {
  margin-bottom: 0;
}

.sea06 .todd-talks-qr {
  float: right;
  width: 120px;
  height: 120px;
  margin: 0 0 16px 16px;
  padding: 2px;
  border-radius: 6px;
  border: 3px solid var(--primary-border);
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-upcoming-events {
  color: var(--text-on-dark);
}

.sea06 .sea06-events-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.sea06 .sea06-carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
}

.sea06 .sea06-carousel-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.sea06 .sea06-carousel-slide {
  min-width: 100%;
  padding: 0;
}

.sea06 .sea06-event-card {
  display: flex;
  gap: 20px;
  background: color-mix(in srgb, var(--surface-card) 5%, var(--surface-section-dark));
  border: 1px solid var(--border-on-dark);
  border-radius: 12px;
  padding: 28px;
  color: var(--text-on-dark);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text-on-dark) 20%, transparent);
}

.sea06 .sea06-event-date {
  flex: 0 0 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg,
      color-mix(in srgb, var(--primary) 80%, transparent),
      var(--primary-strong));
  border-radius: 10px;
  padding: 16px 12px;
  box-shadow: var(--shadow-medium);
  height: 150px;
  width: 90px;
  color: var(--text-on-dark);
}

.sea06 .sea06-event-image {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid color-mix(in srgb, var(--text-on-dark) 30%, transparent);
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-event-month {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sea06 .sea06-event-day {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.sea06 .sea06-event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-on-dark);
}

.sea06 .sea06-event-content h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.sea06 .sea06-event-content p {
  color: var(--text-on-dark-muted);
}

.sea06 .sea06-event-time,
.sea06 .sea06-event-location {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sea06 .sea06-event-time::before {
  content: '🕐';
  font-size: 14px;
}

.sea06 .sea06-event-location::before {
  content: '📍';
  font-size: 14px;
}

.sea06 .sea06-event-description {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.sea06 .sea06-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-on-dark);
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 80px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
}

.sea06 .sea06-carousel-btn:hover,
.sea06 .sea06-carousel-btn:focus-visible {
  color: var(--accent);
  transform: translateY(-50%) scale(1.2);
}

.sea06 .sea06-carousel-prev {
  left: 0;
}

.sea06 .sea06-carousel-next {
  right: 0;
}

.sea06 .sea06-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.sea06 .sea06-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: 2px solid color-mix(in srgb, var(--text-on-dark) 40%, transparent);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.sea06 .sea06-carousel-indicator:hover,
.sea06 .sea06-carousel-indicator:focus-visible {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: scale(1.2);
}

.sea06 .sea06-carousel-indicator-active {
  background: var(--primary);
  border-color: var(--primary-strong);
  width: 32px;
  border-radius: 6px;
}

/* ============================================================================
   ORGANIZATION PAGE
   ============================================================================ */

.sea06-container .sea06-leadership-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.sea06-container .sea06-leader-item {
  flex: 1;
  text-align: center;
}

.sea06-container .sea06-leader-image {
  height: 300px;
  border-radius: 5px;
  box-shadow: var(--shadow-medium);
  max-width: 100%;
}

.sea06-container .sea06-leader-name {
  font-weight: bold;
  font-size: 18px;
  color: var(--text-heading);  
  margin-top: 15px;
  margin-bottom: 5px;
}

.sea06-container .sea06-leader-title {
  font-size: 16px;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 15px;
}

.sea06-container .sea06-bio-link {
  background-color: var(--primary-strong);
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.sea06-container .sea06-bio-link:hover {
  background-color: var(--primary);
}

.sea06-container .sea06-leadership-bio {
/*   background: white;
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease; */

  background: linear-gradient(160deg,
  color-mix(in srgb, var(--surface-card) 85%, var(--surface-muted)),
  var(--surface-card));
  border-radius: 16px;
  border-left: 8px solid var(--accent);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-medium);
  color: var(--text-body);
}

.sea06-container .sea06-bio-title {
  color: var(--text-heading);
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.sea06-container .sea06-bio-content {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sea06-container .sea06-bio-content p {
  margin-bottom: 16px;
}

.sea06-container .sea06-bio-content p:last-child {
  margin-bottom: 0;
}

.sea06-container .sea06-bio-section {
  margin-bottom: 24px;
}

.sea06-container .sea06-bio-section:last-of-type {
  margin-bottom: 0;
}

.sea06-container .sea06-bio-section h3 {
  color: var(--navsea-dark-blue);
  font-family: 'sinter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.sea06-container .sea06-bio-section ul {
  color: var(--navsea-dark-blue);
  font-family: 'sinter', Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 20px;
  margin-bottom: 0;
}

.sea06-container .sea06-bio-section li {
  margin-bottom: 8px;
}

.sea06-container .sea06-bio-section li:last-child {
  margin-bottom: 0;
}

.sea06-container .sea06-bio-close {
  align-self: center;
  font-size: 14px;
  color: var(--text-body);
  border-color: var(--text-body);
}

.sea06-container .sea06-bio-close:hover {
  background-color: var(--primary-strong);
  color: var(--text-on-dark);
  border-color: var(--primary-strong);
}

/* LinkedIn Link Styling */
.sea06-container .sea06-linkedin-section {
  margin-top: 24px;
  margin-bottom: 0;
}

.sea06-container .sea06-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navsea-blue-medium);
  background-color: transparent;
  font-family: 'sinter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
}

.sea06-container .sea06-linkedin-link:hover {
  color: var(--navsea-blue-dark);
  background-color: var(--navsea-light-blue);
  box-shadow: 0 2px 8px rgba(31, 120, 188, 0.15);
  transform: translateX(4px);
}

.sea06-container .sea06-linkedin-logo {
  height: 20px;
  width: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sea06-container .sea06-linkedin-link:hover .sea06-linkedin-logo {
  transform: scale(1.1);
}

.sea06-container .sea06-linkedin-text {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.sea06-container .sea06-linkedin-arrow {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-weight: 800;
}

.sea06-container .sea06-linkedin-link:hover .sea06-linkedin-arrow {
  transform: translateX(6px);
  color: var(--navsea-gold-dark);
  font-weight: 900;
}

.sea06 .sea06-org-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid color-mix(in srgb, var(--border-subtle) 80%, transparent);
}

.sea06 .sea06-org-grid-dark {
  border: 1px solid var(--border-subtle);
}

.sea06 .sea06-org-list {
  background: color-mix(in srgb, var(--surface-muted) 60%, transparent);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-self: stretch;
  box-sizing: border-box;
}

.sea06 .sea06-org-list-dark {
  background: var(--surface-section-primary);
  border-right: 1px solid var(--border-on-dark);
}

.sea06 .sea06-org-list>ul {
  flex: 1;
}

.sea06 .sea06-org-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sea06 .sea06-org-button {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 24px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--border-subtle) 80%, transparent);
  background: transparent;
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, border-left 0.2s ease;
  position: relative;
  box-sizing: border-box;
}

.sea06 .sea06-org-list-dark .sea06-org-button {
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}

.sea06 .sea06-org-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent-strong);
  transition: width 0.2s ease;
}

.sea06 .sea06-org-button:hover,
.sea06 .sea06-org-button:focus-visible {
  background: color-mix(in srgb, var(--primary-soft) 25%, transparent);
}

.sea06 .sea06-org-list-dark .sea06-org-button:hover,
.sea06 .sea06-org-list-dark .sea06-org-button:focus-visible {
  background: color-mix(in srgb, var(--primary) 60%, transparent);
}

.sea06 .sea06-org-button:hover::before,
.sea06 .sea06-org-button:focus-visible::before {
  width: 4px;
}

.sea06 .sea06-org-button.is-active {
  background: color-mix(in srgb, var(--surface-card) 70%, transparent);
  border-left: 4px solid var(--primary-strong);
}

.sea06 .sea06-org-list-dark .sea06-org-button.is-active {
  background: var(--surface-section-dark) !important;
  border-left: 5px solid var(--accent);
}

.sea06 .sea06-org-button.is-active::before {
  width: 0;
}

.sea06 .sea06-org-button .sea06-org-name {
  font-size: 17px;
  position: relative;
}

.sea06 .sea06-org-button .sea06-org-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
}

.sea06 .sea06-org-list-dark .sea06-org-button .sea06-org-title {
  color: var(--text-on-dark);
}

.sea06 .sea06-org-detail {
  background: var(--surface-card);
  border: none;
  border-radius: 0;
  padding: 32px 36px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  align-self: stretch;
}

.sea06 .sea06-org-detail-dark {
  background: var(--surface-section-dark);
  color: var(--text-on-dark);
}

.sea06 .sea06-org-placeholder {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.sea06 .sea06-org-profile {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.sea06 .sea06-org-image {
  flex: 0 0 180px;
  margin: 0;
}

.sea06 .sea06-org-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-org-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sea06 .sea06-org-info h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-heading);
}

.sea06 .sea06-org-detail-dark .sea06-org-info h3 {
  color: var(--text-on-dark);
}

.sea06 .sea06-org-info .sea06-org-role {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
}

.sea06 .sea06-org-detail-dark .sea06-org-info .sea06-org-role {
  color: var(--text-on-dark);
}

.sea06 .sea06-org-content {
  display: grid;
  gap: 20px;
}

.sea06 .sea06-org-content section {
  display: grid;
  gap: 10px;
}

.sea06 .sea06-org-content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.sea06 .sea06-org-detail-dark .sea06-org-content h4 {
  color: var(--accent-soft);
}

.sea06 .sea06-org-content p,
.sea06 .sea06-org-content ul {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.sea06 .sea06-org-content ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.sea06 .sea06-org-report-card {
  padding: 12px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--border-subtle) 60%, transparent);
  background: color-mix(in srgb, var(--surface-muted) 65%, transparent);
}

.sea06 .sea06-org-report-card:last-child {
  border-bottom: none;
}

.sea06 .sea06-org-report-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.3;
}

/* Organization Navigation Button */
.sea06 .sea06-org-nav-button {
  margin-top: 8px;
  /*   border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: color-mix(in srgb, var(--surface-card) 85%, var(--surface-muted));
  color: var(--text-heading);
  padding: 16px 20px; */
}

.sea06 .sea06-org-nav-button::before {
  background: var(--accent);
}

.sea06 .sea06-org-nav-button:hover,
.sea06 .sea06-org-nav-button:focus-visible {
  background: color-mix(in srgb, var(--accent-soft) 20%, var(--surface-card));
}

.sea06 .sea06-org-nav-button:hover::before,
.sea06 .sea06-org-nav-button:focus-visible::before {
  display: none;
}

.sea06 .sea06-org-nav-button .sea06-org-name,
.sea06 .sea06-org-nav-button .sea06-org-title {
  color: inherit;
}

.sea06 .sea06-org-list-dark .sea06-org-nav-button {
  border-color: var(--border-on-dark);
  background: color-mix(in srgb, var(--overlay-light) 35%, transparent);
  color: var(--text-on-dark);
}

.sea06 .sea06-org-list-dark .sea06-org-nav-button:hover,
.sea06 .sea06-org-list-dark .sea06-org-nav-button:focus-visible {
  background: color-mix(in srgb, var(--overlay-light) 55%, transparent);
}

/* Department Subdivisions */
.sea06 .sea06-div-subdivision {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.sea06 .sea06-org-detail-dark .sea06-div-subdivision {
  border-bottom: 1px solid var(--mv-border-subtle);
}

.sea06 .sea06-div-subdivision:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sea06 .sea06-div-subdivision h5 {
  margin: 0 0 12px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navsea-blue-medium);
  letter-spacing: 0.02em;
}

.sea06 .sea06-div-subdivision p {
  color: var(--text-on-dark);
}

.sea06 .sea06-org-detail-dark .sea06-div-subdivision h5 {
  color: var(--navsea-blue-light);
}

.sea06 .sea06-div-responsibilities {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
  color: var(--sea06-muted);
  font-size: 14px;
  line-height: 1.6;
}

.sea06 .sea06-org-detail-dark .sea06-div-responsibilities {
  color: var(--mv-text-muted);
}

.sea06 .sea06-div-responsibilities li {
  margin-bottom: 6px;
}

.sea06 .sea06-div-overview p {
  color: var(--text-on-dark);
}

.sea06 .sea06-div-personnel p {
  color: var(--text-on-dark);
}

/* ============================================================================
   FAQ PAGE
   ============================================================================ */

.sea06 .sea06-hero-faq {
  background-image:
    linear-gradient(to right,
      var(--overlay-dark),
      var(--overlay-light)),
    url("../photos/bg-takeoff.jpg");
}

.sea06 .sea06-hero-faq-header h2 {
  color: var(--text-on-dark);
  border-left: 8px solid var(--accent);
}

.sea06 .sea06-hero-faq p {
  color: var(--text-on-dark-muted);
  margin: 20px 0;
}

.sea06 .sea06-faq-grid-coming-soon {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1200px) {
  .sea06 .sea06-pillars {
    flex-direction: column;
  }
}

@media (max-width: 960px) {

  .sea06 .sea06-steps-grid,
  .sea06 .sea06-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sea06 .sea06-pillars {
    flex-direction: column;
  }

  .sea06 .sea06-nav {
    padding-left: 32px;
  }

  .sea06 .sea06-events-carousel {
    padding: 0 50px 40px;
  }

  .sea06 .sea06-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 40px;
  }

  .sea06 .sea06-event-card {
    flex-direction: column;
    gap: 16px;
  }

  .sea06 .sea06-event-date {
    flex: 0 0 auto;
    flex-direction: row;
    width: auto;
    padding: 10px 14px;
    gap: 10px;
  }

  .sea06 .sea06-org-grid {
    grid-template-columns: 1fr;
  }

  .sea06 .sea06-org-list {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .sea06 .sea06-org-button {
    border-bottom: none;
    border-right: 1px solid var(--border-subtle);
  }

  .sea06 .sea06-org-button.is-active {
    border-left: none;
    border-top: 4px solid var(--primary);
  }

  .sea06 .sea06-org-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sea06 .sea06-org-info {
    align-items: center;
  }

  .sea06 .sea06-todd-talks-heading,
  .sea06 .todd-talks-heading {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {

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

  .sea06 .sea06-pillars {
    padding: 0 0 32px 0;
  }
}

@media (max-width: 640px) {

  .sea06 .sea06-hero,
  .sea06 .sea06-section,
  .sea06 .sea06-band {
    padding: 24px 16px;
  }

  .sea06 .sea06-nav-container {
    padding: 10px 16px;
    gap: 16px;
  }

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

  .sea06 .sea06-events-carousel {
    padding: 0 40px 32px;
  }

  .sea06 .sea06-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  .sea06 .sea06-org-list ul {
    flex-direction: column;
  }

  .sea06 .sea06-org-button {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
}

.sea06 .sea06-org-report-title {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* ============================================================================
   SECTION SIZING
   ============================================================================ */

.sea06 .sea06-full-band {
  min-height: 100vh;
}

.sea06 .sea06-half-band {
  min-height: 50vh;
}

.sea06 .sea06-quarter-band {
  min-height: 25vh;
}

.sea06 .sea06-eighth-band {
  min-height: 12.5vh;
}

/* ============================================================================
   TAGLINE
   ============================================================================ */

.sea06 .sea06-tagline {
  background: linear-gradient(45deg, var(--navsea-gray), black 80%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sea06 .sea06-tagline-content {
  text-align: center;
  margin: 0 auto;
  color: var(--text-on-dark);
}

.sea06 .sea06-tagline-content h2 {
  font-size: 40px;
  line-height: 1;
  font-style: italic;
  color: var(--accent-soft);
  border-left: none;
  margin: 0;
}

.sea06 .sea06-tagline-content h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-style: italic;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin: 0;
}

.sea06 .sea06-tagline-content p {
  font-size: 20px;
  color: var(--primary-soft);
  border-top: 2px solid var(--text-on-dark);
  padding: 20px 0px;
}

.sea06 .sea06-tagline-content strong {
  color: var(--text-on-dark);
}

.sea06 .sea06-mission-tagline-content {
  padding: 0px 40px;
}
.sea06 .sea06-mission-tagline-content p {
  border-top: none;
  font-size: 20px;
  font-style: italic;
}

.sea06 .sea06-history-tagline-content {
  padding: 0px 40px;
}
.sea06 .sea06-history-tagline-content p {
  border-top: none;
  padding: 0 40px;
  color: var(--text-on-dark);
  font-size: 20px;
  font-style: italic;
}

.sea06 .sea06-history-tagline-content strong {
  color: var(--accent);
}

/* ============================================================================
   VALUE SECTION
   ============================================================================ */

.sea06 .sea06-value {
  background-image:
    linear-gradient(to left,
      var(--overlay-dark),
      var(--overlay-light)),
    url("../photos/bg-destroyers-incoming.jpg");
}

.sea06 .sea06-value-content {
  inset: 0;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
}

.sea06 .sea06-value-content h2 {
  font-size: 40px;
  align-self: flex-start;
  color: var(--text-on-dark);
  border-left: 8px solid var(--accent);
  padding-left: 16px;
  line-height: 1;
  text-shadow: 0 2px 6px color-mix(in srgb, var(--surface-section-dark) 80%, transparent);
}

.sea06 .sea06-value-added {
  background: var(--surface-section-muted-dark);
  padding-top: 60px;
}

.sea06 .sea06-value-added-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-on-dark);
  border-left: 8px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px color-mix(in srgb, var(--surface-section-dark) 80%, transparent);
}

.sea06 .sea06-rows {
  display: flex;
  flex-direction: column;
  padding: 0 20px 0px 50px;
}

.sea06 .sea06-row {
  width: 100%;
  opacity: 0;
  animation: none;
}

.sea06 .sea06-rows.animate .sea06-row {
  animation: slideInFromRight 0.6s ease-out forwards;
}

.sea06 .sea06-rows .sea06-row:nth-child(1) {
  animation-delay: 0s;
}

.sea06 .sea06-rows .sea06-row:nth-child(2) {
  animation-delay: 1s;
}

.sea06 .sea06-rows .sea06-row:nth-child(3) {
  animation-delay: 2s;
}

.sea06 .sea06-row h3 {
  color: var(--text-on-dark);
  text-shadow: 0 2px 6px color-mix(in srgb, var(--surface-section-dark) 80%, transparent);
}

.sea06 .sea06-row p {
  font-size: 20px;
  color: var(--text-on-dark);
  border-top: 2px solid var(--text-on-dark);
  padding: 20px 0px 40px 0px;
}

.sea06 .unit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  padding: 40px 0px;
  width: 100%;
  box-sizing: border-box;
}

.sea06 .unit-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-medium);
}

.sea06 .unit-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-out, filter 0.4s ease-out;
}

/* Text overlay that slides up */
.sea06 .unit-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;

  padding: 10px;
  color: #fff;
  background: var(--overlay-primary-dark);

  transform: translateY(55%);
  transition: transform 0.4s ease-out;
}

.sea06 .unit-card-overlay h3 {
  margin: 0 0 0.4rem;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.sea06 .unit-card-overlay p {
  margin: 0;
  line-height: 1.4;
  color: var(--text-on-dark);
}

/* Hover state: text block slides fully up, image zoom/dim for polish */
.sea06 .unit-card:hover img,
.sea06 .unit-card:focus-within img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.sea06 .unit-card:hover .unit-card-overlay,
.unit-card:focus-within .unit-card-overlay {
  transform: translateY(0);
}

/* ============================================================================
   IMAGE TRIO SECTION
   ============================================================================ */

.sea06 .sea06-image-trio-section {
  margin: 0;
  padding: 0;
  width: 100%;
}

.sea06 .sea06-image-trio-header {
  padding: 40px 0 20px 0;
  text-align: center;
}

.sea06 .sea06-image-trio-header h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--text-heading);
}

.sea06 .sea06-image-trio-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
}

.sea06 .sea06-image-trio-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 2;
}

.sea06 .sea06-image-trio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease-out, filter 0.4s ease-out;
  z-index: 0;
}

.sea06 .sea06-image-trio-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 10px;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--overlay-primary-dark);
  text-align: center;
}

.sea06 .sea06-image-trio-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: #fff;
  background: var(--overlay-primary-dark);
  transform: translateY(50%);
  transition: transform 0.4s ease-out;
  z-index: 1;
}

.sea06 .sea06-image-trio-overlay h3 {
  margin: 0;
  font-size: 28px;
  height: 100px;
  letter-spacing: 2px;
  color: var(--text-on-dark);
  text-transform: uppercase;
}

.sea06 .sea06-image-trio-overlay p {
  margin: 0;
  line-height: 1.4;
  font-size: 20px;
  height: 100px;
  color: var(--text-on-dark);
}

.sea06 .sea06-image-trio-overlay p strong {
  color: var(--accent);
}

.sea06 .sea06-image-trio-overlay p strong {
  color: var(--accent);
}

.sea06 .sea06-image-trio-overlay p strong {
  color: var(--accent);
}
/* Hover state: zoom in on background image, show overlay */
.sea06 .sea06-image-trio-item:hover::before {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.sea06 .sea06-image-trio-item:hover .sea06-image-trio-overlay {
  transform: translateY(0);
}

/* ============================================================================
   QUICK LINKS & FEEDBACK
   ============================================================================ */

.sea06 .sea06-feedback-section {
  background-color: var(--surface-section-muted);
  color: var(--text-on-dark);
}

.sea06 .sea06-feedback-header {
  margin-bottom: 40px;
}

.sea06 .sea06-link-single {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 8px 0 0;
}

.sea06 .sea06-link-card {
  background: linear-gradient(160deg,
      color-mix(in srgb, var(--surface-card) 85%, var(--surface-muted)),
      var(--surface-card));
  border-radius: 16px;
  border-left: 8px solid var(--accent);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-medium);
  color: var(--text-body);
}

.sea06 .sea06-link-card .sea06-link-anchor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  text-shadow: 0 1px 2px color-mix(in srgb, var(--surface-section-light) 60%, transparent);
}

.sea06 .sea06-link-card .sea06-link-anchor:hover,
.sea06 .sea06-link-card .sea06-link-anchor:focus-visible {
  color: var(--link-hover);
  transform: translateX(4px);
}

.sea06 .sea06-link-icon {
  font-size: 20px;
  line-height: 1;
}

.sea06 .sea06-link-card p {
  opacity: 0.95;
  font-size: 15px;
  line-height: 1.65;
}

.sea06 .sea06-feedback-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.sea06 .sea06-feedback-qr-container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.sea06 .sea06-feedback-qr-code {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  border: 3px solid var(--primary-border);
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-feedback-qr-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sea06 .sea06-feedback-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sea06 .sea06-feedback-text h3 {
  margin: 0;
  font-size: 24px;
  color: var(--text-heading);
}

.sea06 .sea06-feedback-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.sea06 .sea06-feedback-topics {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sea06 .sea06-feedback-topics li {
  padding: 12px 16px;
  background: var(--surface-muted);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.sea06 .sea06-feedback-topics li::before {
  content: '→';
  margin-right: 10px;
  color: var(--primary);
  font-weight: 700;
}

.sea06 .sea06-feedback-button-container {
  margin-top: 24px;
}

/* Feedback Form Styles */
.sea06 .sea06-feedback-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--surface-section-light);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-form-group {
  margin-bottom: 24px;
}

.sea06 .sea06-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
}

.sea06 .sea06-form-required {
  color: var(--accent);
  margin-left: 4px;
}

.sea06 .sea06-form-input,
.sea06 .sea06-form-select,
.sea06 .sea06-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  background-color: var(--input-bg);
  color: var(--input-fg);
  border: 2px solid var(--input-border);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sea06 .sea06-form-input:focus,
.sea06 .sea06-form-select:focus,
.sea06 .sea06-form-textarea:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 3px rgba(0, 47, 112, 0.1);
}

.sea06 .sea06-form-input:hover,
.sea06 .sea06-form-select:hover,
.sea06 .sea06-form-textarea:hover {
  border-color: var(--input-border-hover);
}

.sea06 .sea06-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.sea06 .sea06-form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.sea06 .sea06-btn-primary {
  background-color: var(--primary);
  color: var(--text-on-dark);
  border-color: var(--primary);
}

.sea06 .sea06-btn-primary:hover,
.sea06 .sea06-btn-primary:focus-visible {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  color: var(--link-hover);
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-feedback-success {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--surface-section-light);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.sea06 .sea06-feedback-success h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 24px;
}

.sea06 .sea06-feedback-success p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
}

.sea06 .sea06-feedback-error {
  max-width: 800px;
  margin: 24px auto 0;
  padding: 32px;
  background-color: var(--danger-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  border: 2px solid var(--danger);
}

.sea06 .sea06-feedback-error h3 {
  color: var(--danger);
  margin-bottom: 16px;
  font-size: 24px;
}

.sea06 .sea06-feedback-error p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
}

.sea06 .sea06-feedback-section {
  padding-top: 60px;
}

/* ============================================================================
   HISTORY
   ============================================================================ */

.sea06 .sea06-history-intro {
  padding-top: 60px;
}


.sea06 .sea06-timeline-scroll-btn {
  margin-top: 24px;
}

.sea06 .sea06-timeline-section {
  padding: 0px;
  position: relative;
  background: linear-gradient(to bottom,
      var(--surface-section-muted-dark),
      var(--navsea-blue-darkest));
}


.sea06 .sea06-timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Central vertical line */
.sea06 .sea06-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0;
  transform: translateX(-50%);
  z-index: 1;
  background: none;
  border-left: 3px dashed var(--primary);
}

.sea06 .sea06-timeline-line-top {
  position: absolute;
  top: 0;
  left: 30%;
  min-width: 40%;
  height: 2px;
  background: var(--primary-strong);
  border-radius: 1px;
  z-index: 1;
  box-shadow: 0 -2px 8px 1px rgba(0, 0, 0, 0.25);
}

/* Timeline event container */
.sea06 .sea06-timeline-event {
  margin-bottom: 80px;
}

.sea06 .sea06-timeline-section .sea06-timeline-container .sea06-timeline-event {
  padding: 32px;
  margin-bottom: 0;
}

/* Event content wrapper */
.sea06 .sea06-timeline-content {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: space-between;
  gap: 60px;
}

/* Left side: content on left, marker on right */
/*   .sea06 .sea06-timeline-event-left .sea06-timeline-content {
    flex-direction: row;
    justify-content: flex-end;
    padding-right: calc(50% + 24px);
  }
   */
/* Right side: marker on left, content on right */
/*   .sea06 .sea06-timeline-event-right .sea06-timeline-content {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: calc(50% + 24px);
  } */

/* Timeline marker (dot on the line) */
.sea06 .sea06-timeline-marker {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--surface-card);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--primary),
    0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}


/* Timeline card */
.sea06 .sea06-timeline-card {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
  flex: 1;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-out .4s, transform 0.8s ease, box-shadow 0.3s ease;
}



.sea06 .sea06-timeline-card:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-2px) !important;
}

.sea06 .sea06-timeline-card h3 {
  font-size: 40px;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 8px 0;
  font-family: 'magno-sans-variable', Arial, sans-serif;
}

.sea06 .sea06-timeline-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px 0;
}

.sea06 .sea06-timeline-card p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-body);
  margin: 0;
}

.sea06 .sea06-timeline-source {
  margin-top: 12px;
  font-size: 13px;
}

.sea06 .sea06-timeline-source a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sea06 .sea06-timeline-source a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive: Stack timeline vertically on smaller screens */
@media (max-width: 768px) {
  .sea06 .sea06-timeline-line {
    left: 24px;
  }

  .sea06 .sea06-timeline-event .sea06-timeline-content {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
  }

  .sea06 .sea06-timeline-marker {
    left: 24px;
    transform: translateX(-50%) scale(0);
  }

  .sea06 .sea06-timeline-event.sea06-timeline-visible .sea06-timeline-marker {
    transform: translateX(-50%) scale(1);
  }

  .sea06 .sea06-timeline-card {
    max-width: 100%;
  }

  /* Mobile: all cards slide in from left */
  .sea06 .sea06-timeline-event .sea06-timeline-card {
    transform: translateX(-20px);
  }

  .sea06 .sea06-timeline-event.sea06-timeline-visible .sea06-timeline-card {
    opacity: 1;
    transform: translateX(0);
  }
}

/*   .sea06 .sea06-timeline-event-photo-right .sea06-timeline-content .sea06-timeline-card {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
    max-width: 600px;
  }

  .sea06 .sea06-timeline-event-photo-left .sea06-timeline-content .sea06-timeline-card {
    display: flex;
    gap: 20px;
    flex-direction: row;
    max-width: 600px;
  }
  */
.sea06 .sea06-timeline-card-photo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 300px;
  width: 500px;
  object-fit: cover;
  box-shadow: none;
  border-radius: 0;
}

.sea06-timeline-card-photo img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-medium);
}

.sea06 .sea06-timeline-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sea06 .sea06-timeline-card-text h2 {
  color: var(--accent);
  margin: 0 0 8px 0;
  font-family: 'magno-sans-variable', Arial, sans-serif;
}

.sea06 .sea06-timeline-card-text h3 {
  font-size: 40px;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 8px 0;
  font-family: 'magno-sans-variable', Arial, sans-serif;
}

.sea06 .sea06-timeline-card-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navsea-white);
  margin: 0 0 12px 0;
}

.sea06 .sea06-timeline-card-text p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

.sea06 .sea06-timeline-card-text ul {
  list-style: disc;
  padding-left: 20px;
}

.sea06 .sea06-timeline-card-text li {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
}

.sea06 .sea06-timeline-card-text a {
  font-size: 14px;
  color: var(--accent-soft);
  margin: 0;
  text-decoration: none;
}

.sea06 .sea06-timeline-card-text a:hover {
  text-decoration: underline;
}

.sea06 .sea06-timeline-card-text a:visited {
  color: var(--text-body);
}

.sea06 .sea06-timeline-card-text a:active {
  color: var(--text-body);
}

.sea06 .sea06-timeline-card-text a:focus {
  color: var(--text-body);
}


.sea06 .sea06-timeline-section .sea06-timeline-container .sea06-timeline-event:nth-child(odd) {
  .sea06-timeline-content {
    flex-direction: row;
    padding-right: 0px;

    .sea06-timeline-card {
      transform: translateX(-400px);
      margin-left: 20px;
    }

    .sea06-timeline-card-photo {
      justify-content: flex-end;
    }
  }
}

.sea06 .sea06-timeline-section .sea06-timeline-container .sea06-timeline-event:nth-child(even) {

  .sea06-timeline-content {
    flex-direction: row-reverse;
    padding-left: 0px;

    .sea06-timeline-card {
      transform: translateX(400px);
      margin-right: 20px;
    }

    .sea06-timeline-card-photo {
      justify-content: flex-start;
    }

  }

}


.sea06 .sea06-timeline-section .sea06-timeline-container .sea06-timeline-event.sea06-timeline-visible .sea06-timeline-content .sea06-timeline-marker {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.sea06 .sea06-timeline-section .sea06-timeline-container .sea06-timeline-event.sea06-timeline-visible .sea06-timeline-content .sea06-timeline-card {
  opacity: 1;
  transform: translateX(0);
}


/*   #option-3  {
    background: linear-gradient(
      to bottom,
      var(--surface-section-muted-dark),
      var(--navsea-blue-darkest) 
    );
    padding-top: 0px;
    padding-bottom: 0px;
  } */

/*   #option-3 .sea06-timeline-content {
    background: transparent;
    justify-content: space-between;
    gap: 60px;
  }   */

/* Dashed line for option-3 */
/*   #option-3 .sea06-timeline-line {
    background: none;
    border-left: 3px dashed var(--primary);
    width: 0;
  } */

/*   #option-3 .sea06-timeline-marker {
    background: var(--primary-strong);
  }
  #option-3 .sea06-timeline-card {
    flex: 1;
    max-width: 500px;
  
  } */

/*   #option-3 .sea06-timeline-card-photo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 300px;
    width: 500px;
    box-shadow: none;
    border-radius: 0;
  }

  #option-3 .sea06-timeline-card-photo img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
  } */


/*   #option-3 .sea06-timeline-container .sea06-timeline-event:nth-child(odd) {
    .sea06-timeline-content {
      flex-direction: row;
      padding-right: 0px;
    }
  }
  #option-3 .sea06-timeline-container .sea06-timeline-event:nth-child(even) {
    .sea06-timeline-content {
      flex-direction: row-reverse;
      padding-left: 0px;
    }

    .sea06-timeline-card-photo {
      justify-content: flex-start;
    }
  } */

/* ============================================================================ */


/* ============================================================================
   FOOTER
   ============================================================================ */

.sea06 .sea06-footer {
  padding: 16px 32px 16px;
  background-color: var(--surface-section-dark);
}

.sea06 .sea06-footer p {
  font-size: 14px;
  color: var(--text-on-dark);
  line-height: 1;
}

/* ============================================================================
   LOGIN PAGE
   ============================================================================ */

.sea06-login-section {
  width: 100%;
  padding: 40px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.sea06-login-container {
  width: 100%;
  max-width: 440px;
  background-color: var(--surface-card);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  padding: 48px 40px;
  border: 1px solid var(--border-subtle);
}

.sea06-login-header {
  text-align: center;
  margin-bottom: 40px;
}

.sea06-login-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: block;
}

.sea06-login-header h2 {
  font-size: 36px;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-weight: 700;
}

.sea06-login-header h3 {
  font-size: 20px;
  color: var(--text-body);
  margin-bottom: 16px;
  font-weight: 400;
}

.sea06-login-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.sea06-login-form {
  width: 100%;
}

.sea06-form-group {
  margin-bottom: 24px;
}

.sea06-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.sea06-form-group input[type="text"],
.sea06-form-group input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  background-color: var(--input-bg);
  color: var(--input-fg);
  border: 2px solid var(--input-border);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.sea06-form-group input[type="text"]:hover,
.sea06-form-group input[type="password"]:hover {
  border-color: var(--input-border-hover);
}

.sea06-form-group input[type="text"]:focus,
.sea06-form-group input[type="password"]:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: var(--shadow-focus-ring);
}

.sea06-form-group input[type="text"]::placeholder,
.sea06-form-group input[type="password"]::placeholder {
  color: var(--input-placeholder);
}

.sea06-login-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.sea06-login-error {
  background-color: var(--danger-soft);
  color: var(--danger);
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--danger);
}

.sea06-login-info {
  text-align: left;
}

.sea06-login-info > p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
}

.sea06-login-instructions {
  background-color: var(--surface-section-light);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
  border-left: 4px solid var(--primary);
}

.sea06-login-instructions h4 {
  color: var(--text-heading);
  margin-bottom: 16px;
  font-size: 18px;
}

.sea06-login-instructions ol {
  margin-left: 20px;
  color: var(--text-body);
}

.sea06-login-instructions li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.sea06-login-note {
  background-color: var(--primary-soft);
  padding: 16px;
  border-radius: 6px;
  margin-top: 24px;
  border: 1px solid var(--primary);
}

.sea06-login-note p {
  margin: 0;
  color: var(--text-body);
  font-size: 14px;
}

.sea06-login-note strong {
  color: var(--text-heading);
}