:root {
  --navy: #05152f;
  --navy-deep: #031023;
  --blue: #2475f5;
  --blue-dark: #145bdb;
  --blue-soft: #edf5ff;
  --mint: #50d7c4;
  --mint-soft: #e9fbf8;
  --ink: #10213a;
  --text: #3e5069;
  --muted: #8090a6;
  --line: #e1e9f2;
  --surface: #f6f9fd;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 55, 105, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  transition: 0.3s ease;
}

.site-header.scrolled {
  color: white;
  background: rgba(4, 20, 43, 0.93);
  box-shadow: 0 6px 24px rgba(0, 12, 32, 0.2);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 170px;
  height: 46px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 35px;
  margin-left: auto;
}

.desktop-nav a {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.nav-cta {
  margin-left: 36px;
  padding: 12px 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.site-header.scrolled .nav-cta {
  border-color: var(--blue);
  background: var(--blue);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 74%, rgba(58, 198, 224, 0.24), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(48, 111, 234, 0.32), transparent 32%),
    linear-gradient(135deg, #041329 0%, #092653 62%, #063e65 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 35px;
  align-items: center;
  min-height: 820px;
  padding-top: 70px;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(70px);
}

.hero-glow-one {
  top: 120px;
  right: 17%;
  background: #3de3d1;
}

.hero-glow-two {
  bottom: 0;
  left: 10%;
  background: #1679ff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #76eadf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.3px;
}

.eyebrow-blue {
  color: #2675e8;
}

.eyebrow-mint {
  color: #33bca9;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5de2cf;
  box-shadow: 0 0 0 5px rgba(93, 226, 207, 0.15);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 23px;
  font-size: clamp(54px, 5.1vw, 72px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -4.5px;
}

h1 strong {
  color: #71e4db;
  font-weight: 900;
}

.hero-description {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions,
.beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-large {
  min-height: 56px;
  padding: 0 23px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #2b8cff, #2462ed);
  box-shadow: 0 10px 26px rgba(0, 98, 238, 0.3);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 98, 238, 0.4);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 66px;
}

.proof-item {
  display: grid;
  gap: 5px;
}

.proof-item b {
  color: white;
  font-size: 19px;
  font-weight: 900;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.proof-line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 740px;
}

.phone {
  position: absolute;
  z-index: 3;
  width: 270px;
  padding: 5px;
  border: 1px solid rgba(182, 205, 226, 0.42);
  border-radius: 34px;
  background: linear-gradient(145deg, #26394e, #08131f 58%, #1d3044);
  box-shadow:
    0 28px 60px rgba(0, 7, 22, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(193, 211, 228, 0.42);
  border-radius: 28px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.phone-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-primary {
  top: 95px;
  right: 110px;
  height: 584px;
  transform: rotate(1.5deg);
}

.phone-secondary {
  z-index: 1;
  top: 162px;
  right: 14px;
  width: 216px;
  height: 474px;
  opacity: 0.72;
  transform: rotate(7deg);
}

.glass-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(14, 50, 87, 0.62);
  box-shadow: 0 18px 38px rgba(0, 18, 48, 0.25);
  backdrop-filter: blur(14px);
}

.widget-caption {
  position: absolute;
  z-index: 7;
  top: 88px;
  left: -10px;
  display: flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.widget-caption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(80, 215, 196, 0.12);
}

.hero-widget {
  position: absolute;
  z-index: 7;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 142px;
  min-height: 76px;
  padding: 14px 16px;
  color: white;
  border: 1px solid rgba(200, 221, 239, 0.38);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(103, 137, 176, 0.92), rgba(41, 73, 110, 0.94));
  box-shadow: 0 18px 38px rgba(0, 18, 48, 0.22);
  backdrop-filter: blur(14px);
}

.hero-widget svg {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  fill: none;
  stroke: #6ce2d5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.widget-weather svg {
  stroke: #ffe26e;
}

.widget-icon {
  display: grid;
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  place-items: center;
  color: #8cf0e5;
  border: 1px solid rgba(114, 234, 221, 0.42);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.widget-copy {
  display: grid;
  gap: 1px;
}

.widget-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.widget-copy strong {
  color: white;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.widget-copy em {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
}

.widget-score {
  top: 142px;
  left: -23px;
}

.widget-weather {
  right: -6px;
  bottom: 96px;
}

.widget-water {
  bottom: 32px;
  left: 7px;
}

.widget-tide {
  top: 298px;
  right: -7px;
}

.hero-wave {
  display: none;
}

.section {
  padding: 128px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -3.6px;
}

h2 strong {
  color: var(--blue);
}

.section-heading p:not(.eyebrow),
.solution-copy > p,
.ai-copy > p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}

.problem-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.problem-section::before,
.problem-section::after {
  position: absolute;
  right: -12%;
  left: -12%;
  height: 250px;
  pointer-events: none;
  content: "";
}

.problem-section::before {
  top: 7%;
  border: 1px solid rgba(126, 143, 164, 0.13);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  box-shadow:
    0 28px 0 -1px rgba(126, 143, 164, 0.07),
    0 58px 0 -1px rgba(126, 143, 164, 0.045);
  transform: rotate(-2deg);
}

.problem-section::after {
  right: -21%;
  bottom: -28px;
  left: -21%;
  border: 1px solid rgba(126, 143, 164, 0.12);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 48%;
  box-shadow:
    0 -30px 0 -1px rgba(126, 143, 164, 0.065),
    0 -62px 0 -1px rgba(126, 143, 164, 0.04);
  transform: rotate(2deg);
}

.problem-section .container {
  position: relative;
  z-index: 1;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  padding: 33px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 32px rgba(44, 66, 92, 0.055);
  transition: 0.28s ease;
}

.problem-card:hover {
  border-color: #c5d8f4;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.card-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #d7e4f3;
  font-size: 30px;
  font-weight: 900;
}

.icon-box,
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
}

.icon-box svg,
.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.problem-card h3,
.feature-card h3 {
  margin-bottom: 11px;
  font-size: 19px;
  letter-spacing: -1px;
}

.problem-card p,
.feature-card p {
  margin-bottom: 0;
  color: #6a7a90;
  font-size: 14px;
  line-height: 1.8;
}

.solution-section {
  background: linear-gradient(135deg, #071d3b, #083359);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.solution-copy h2 {
  color: white;
}

.solution-copy h2 strong {
  color: var(--mint);
}

.solution-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 17px;
  color: #7ce6da;
  font-size: 15px;
  font-weight: 800;
}

.data-cloud {
  position: relative;
  height: 360px;
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  align-content: center;
  width: 168px;
  height: 168px;
  text-align: center;
  border: 1px solid rgba(102, 226, 213, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 215, 196, 0.34), rgba(31, 115, 163, 0.38));
  box-shadow: 0 0 0 24px rgba(72, 202, 198, 0.07), 0 0 0 55px rgba(72, 202, 198, 0.035);
  transform: translate(-50%, -50%);
}

.ai-core span {
  color: #72eadd;
  font-size: 35px;
  font-weight: 900;
  letter-spacing: -2px;
}

.ai-core strong {
  color: white;
  font-size: 17px;
}

.ai-core small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.data-chip {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 11px 15px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.data-chip b {
  font-size: 17px;
}

.chip-one { top: 21px; left: 34%; }
.chip-two { top: 89px; left: 4%; }
.chip-three { top: 82px; right: 1%; }
.chip-four { bottom: 92px; left: 3%; }
.chip-five { bottom: 25px; left: 31%; }
.chip-six { right: 5%; bottom: 88px; }
.chip-seven { top: 3px; right: 3%; }

.feature-section {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.feature-card {
  min-height: 231px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition: 0.28s ease;
}

.feature-card:hover {
  border-color: #c5daf7;
  box-shadow: 0 16px 35px rgba(39, 89, 150, 0.1);
  transform: translateY(-6px);
}

.feature-main {
  color: white;
  border-color: #196bf0;
  background: linear-gradient(135deg, #257df8, #1156cf);
}

.feature-main p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-label {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.score-demo {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.score-ring {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding-top: 14px;
  border: 4px solid rgba(255, 255, 255, 0.35);
  border-top-color: #8ef0e4;
  border-radius: 50%;
}

.score-ring strong {
  font-size: 28px;
}

.score-ring span {
  margin-left: 1px;
  font-size: 10px;
}

.score-demo b,
.score-demo small {
  display: block;
}

.score-demo small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.screen-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 100%, rgba(45, 157, 204, 0.3), transparent 40%),
    linear-gradient(135deg, #06172e, #082c50);
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
}

.screen-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  height: 560px;
  margin-top: 75px;
}

.showcase-phone {
  position: relative;
  width: 236px;
  height: 516px;
  margin: 34px -14px 0;
  opacity: 0.8;
}

.showcase-phone-main {
  z-index: 7;
  width: 268px;
  height: 588px;
  margin-top: 0;
  opacity: 1;
}

.screen-note {
  position: absolute;
  width: 230px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.screen-note::after {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.screen-note span {
  color: #5ee0d0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.screen-note h3 {
  margin: 8px 0;
  font-size: 19px;
}

.screen-note p {
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.8;
}

.note-left {
  top: 185px;
  left: 0;
  text-align: right;
}

.note-left::after {
  right: 0;
}

.note-right {
  top: 185px;
  right: 0;
}

.note-right::after {
  left: 0;
}

.comparison-section {
  background: #fff;
}

.table-wrap {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(13, 57, 112, 0.07);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 21px 25px;
  border-bottom: 1px solid var(--line);
  color: #607087;
  font-size: 14px;
}

th {
  color: var(--ink);
  background: #f5f8fc;
  font-size: 14px;
}

th:first-child,
td:first-child {
  color: var(--ink);
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.highlight {
  background: #f2f8ff;
}

.mini-logo {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -1px;
}

.mini-logo b {
  color: var(--blue);
}

.check {
  margin-right: 8px;
  color: #19ad9e;
  font-weight: 900;
}

.check.muted {
  color: #8395a9;
}

.minus {
  color: #bec8d5;
}

.ai-section {
  background: var(--surface);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 75px;
  align-items: center;
}

.ai-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #344b69;
  font-size: 14px;
  font-weight: 700;
}

.ai-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #188cde;
  background: #e2f5fa;
  font-size: 10px;
}

.ai-panel {
  padding: 29px;
  color: white;
  border-radius: 22px;
  background: linear-gradient(145deg, #061227, #092653);
  box-shadow: 0 24px 50px rgba(7, 41, 85, 0.22);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.panel-header small {
  color: #55d7ca;
  font-size: 11px;
  font-weight: 800;
}

.panel-header h3 {
  margin: 5px 0 0;
  font-size: 22px;
}

.panel-header > span {
  color: #5de0d4;
  font-size: 42px;
  font-weight: 900;
}

.panel-header > span small {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.ai-panel > p {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.9;
}

.metric {
  display: grid;
  grid-template-columns: 37px 1fr 24px;
  gap: 11px;
  align-items: center;
  margin: 13px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.metric i {
  overflow: hidden;
  height: 5px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
}

.metric b {
  display: block;
  height: 100%;
  border-radius: 9px;
  background: linear-gradient(90deg, #58ded1, #2a7af5);
}

.metric strong {
  color: white;
  font-size: 13px;
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.ai-tags span {
  padding: 6px 9px;
  color: #71dcd3;
  border: 1px solid rgba(79, 215, 200, 0.2);
  border-radius: 20px;
  background: rgba(79, 215, 200, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.beta-section {
  padding: 100px 0;
}

.beta-card {
  position: relative;
  overflow: hidden;
  min-height: 385px;
  padding: 61px 66px;
  color: white;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(4, 73, 176, 0.96) 0%, rgba(3, 109, 188, 0.88) 43%, rgba(9, 146, 186, 0.36) 100%),
    url("./landing-assets/download-fishing-bg.jpg") 72% 55% / cover no-repeat;
  box-shadow: 0 18px 45px rgba(24, 105, 191, 0.22);
}

.beta-card h2 {
  margin-bottom: 10px;
}

.beta-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.beta-card > div:first-child {
  position: relative;
  z-index: 2;
}

.beta-actions {
  margin-top: 28px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.store-button {
  display: block;
  width: 194px;
  height: 60px;
  border-radius: 9px;
  box-shadow: 0 10px 22px rgba(0, 29, 72, 0.16);
  transition: 0.25s ease;
}

.store-button:hover {
  transform: translateY(-3px);
}

.store-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.store-notice {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.button-white {
  color: var(--blue-dark);
  background: white;
}

.button-outline-white {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.37);
  background: rgba(255, 255, 255, 0.08);
}

.button-white:hover,
.button-outline-white:hover {
  transform: translateY(-3px);
}

.site-footer {
  padding: 53px 0 25px;
  background: #06152c;
  color: white;
}

.footer-wrap,
.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-wrap p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.company-info {
  margin-top: 34px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1.85;
}

.company-info strong {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 13px;
}

.company-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 0;
}

.company-details span:not(:last-child)::after {
  margin: 0 9px;
  color: rgba(255, 255, 255, 0.18);
  content: "|";
}

.company-info address {
  margin-top: 1px;
  font-style: normal;
}

.company-info a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s ease;
}

.company-info a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 19px;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-one {
  transition-delay: 0.12s;
}

.delay-two {
  transition-delay: 0.22s;
}

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

  .phone-primary {
    right: 76px;
  }

  .screen-note {
    width: 180px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-wrap {
    height: 69px;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 11px 8px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 10px;
    background: transparent;
  }

  .site-header.scrolled .menu-toggle {
    border-color: rgba(255, 255, 255, 0.66);
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: #fff;
  }

  .mobile-nav {
    padding: 9px 24px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 15px 20px rgba(0, 25, 59, 0.08);
  }

  .site-header.menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-nav .button {
    margin-top: 13px;
    min-height: 48px;
    color: white;
  }

  .hero {
    min-height: 1110px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-top: 142px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 500px);
    min-height: 558px;
    margin: 10px auto 0;
  }

  .phone-primary {
    top: 50px;
    right: 50%;
    height: 543px;
    transform: translateX(50%) rotate(1deg);
  }

  .phone-secondary {
    top: 109px;
    right: 0;
    height: 428px;
  }

  .widget-caption {
    top: 21px;
    left: 16px;
  }

  .hero-widget {
    min-width: 126px;
    min-height: 67px;
    padding: 11px 13px;
  }

  .widget-score {
    top: 118px;
    left: -8px;
  }

  .widget-weather {
    right: 2px;
    bottom: 58px;
  }

  .widget-water {
    bottom: 3px;
    left: 2px;
  }

  .widget-tide {
    top: 258px;
    right: -5px;
  }

  .solution-grid,
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .data-cloud {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-note {
    display: none;
  }

  .screen-showcase {
    transform: scale(0.92);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand-logo {
    width: 142px;
    height: 39px;
  }

  .hero {
    min-height: 1010px;
  }

  .hero-grid {
    padding-top: 118px;
  }

  h1 {
    font-size: 46px;
    letter-spacing: -3.4px;
  }

  h1 strong {
    display: inline-block;
    font-size: 42px;
    white-space: nowrap;
  }

  .hero-description {
    font-size: 15px;
  }

  .button-large {
    min-height: 52px;
    padding: 0 17px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-proof {
    gap: 13px;
    margin-top: 41px;
  }

  .proof-item b {
    font-size: 17px;
  }

  .proof-item span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 565px;
  }

  .phone-primary {
    top: 46px;
    width: 231px;
    height: 500px;
  }

  .phone-secondary {
    top: 103px;
    right: 12px;
    width: 188px;
    height: 405px;
  }

  .widget-caption {
    top: 5px;
    left: 50%;
    justify-content: center;
    width: max-content;
    margin: 0;
    font-size: 10px;
    transform: translateX(-50%);
  }

  .hero-widget {
    gap: 7px;
    min-width: 103px;
    min-height: 53px;
    padding: 8px 9px;
    border-radius: 13px;
  }

  .hero-widget svg {
    width: 23px;
    height: 23px;
  }

  .widget-icon {
    width: 25px;
    height: 25px;
    font-size: 9px;
  }

  .widget-copy small {
    font-size: 9px;
  }

  .widget-copy strong {
    font-size: 21px;
  }

  .widget-copy em {
    font-size: 10px;
  }

  .widget-score {
    top: 120px;
    left: -4px;
  }

  .widget-weather {
    right: -4px;
    bottom: 72px;
  }

  .widget-water {
    bottom: 18px;
    left: -4px;
  }

  .widget-tide {
    top: 255px;
    right: -4px;
  }

  .section {
    padding: 88px 0;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -2.7px;
  }

  .solution-copy h2 {
    font-size: 29px;
    line-height: 1.42;
    letter-spacing: -1.9px;
  }

  .solution-copy h2 strong {
    display: inline-block;
    font-size: 27px;
  }

  .desktop-break {
    display: none;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
  }

  .data-cloud {
    height: 310px;
    transform: scale(0.92);
  }

  .chip-one { left: 29%; }
  .chip-seven { right: -4%; }
  .chip-three { right: -5%; }
  .chip-six { right: -3%; }

  .screen-section {
    padding-bottom: 68px;
  }

  .screen-showcase {
    width: 100%;
    height: 505px;
    margin-top: 43px;
  }

  .showcase-phone {
    position: absolute;
    top: 38px;
    width: 156px;
    height: 422px;
    margin: 0;
    opacity: 0.42;
  }

  .showcase-phone-left {
    left: -70px;
  }

  .showcase-phone-right {
    right: -70px;
  }

  .showcase-phone-main {
    top: 0;
    left: 50%;
    width: 230px;
    height: 505px;
    opacity: 1;
    transform: translateX(-50%);
  }

  .table-wrap {
    overflow-x: auto;
  }

  table {
    min-width: 710px;
  }

  th,
  td {
    padding: 17px 19px;
    font-size: 12px;
  }

  .ai-panel {
    padding: 23px 20px;
  }

  .beta-section {
    padding: 72px 0;
  }

  .beta-card {
    min-height: 460px;
    padding: 42px 25px;
    background:
      linear-gradient(180deg, rgba(4, 73, 176, 0.97) 0%, rgba(3, 109, 188, 0.88) 56%, rgba(9, 146, 186, 0.42) 100%),
      url("./landing-assets/download-fishing-bg.jpg") 62% 56% / cover no-repeat;
  }

  .footer-wrap {
    display: grid;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .company-details {
    display: grid;
    gap: 2px;
  }

  .company-details span:not(:last-child)::after {
    content: none;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
  }
}
