/* Standalone landing page styles. No dependency on style.css */

:root {
  --cyra-bg-0: #060606;
  --cyra-bg-1: #0f0f0f;
  --cyra-bg-2: #171615;
  --cyra-panel: rgba(22, 20, 19, 0.72);
  --cyra-line: rgba(229, 206, 168, 0.2);
  --cyra-text: #f4eee4;
  --cyra-muted: #c8bcaa;
  --cyra-gold: #b78a4a;
  --cyra-gold-soft: #e5ceaa;
  --cyra-shadow: 0 24px 56px rgba(0, 0, 0, 0.48);
}

html {
  color-scheme: dark;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background-color: #060606;
}

body.cyra-lp-body {
  font-family: "Bahnschrift", "Trebuchet MS", "Verdana", sans-serif;
  color: var(--cyra-text);
  background-color: var(--cyra-bg-0);
  background-image:
    radial-gradient(circle at 52% 26%, rgba(183, 138, 74, 0.22), transparent 34%),
    radial-gradient(circle at 10% -3%, rgba(229, 206, 168, 0.1), transparent 36%),
    linear-gradient(180deg, var(--cyra-bg-1), var(--cyra-bg-0));
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

@supports not (height: 100dvh) {
  body.cyra-lp-body {
    min-height: 100vh;
  }

  .cyra-page {
    min-height: calc(100vh - 150px);
  }
}

body.cyra-lp-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.2;
  z-index: -1;
}

a {
  color: inherit;
}

.cyra-nav-shell {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(229, 206, 168, 0.16);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.74));
  backdrop-filter: blur(14px);
}

.cyra-nav {
  width: 100%;
  margin: 0;
  min-height: 68px;
  padding: 9px clamp(14px, 2.8vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.cyra-logo {
  text-decoration: none;
  font-family: "Bahnschrift SemiBold", "Bahnschrift", "Trebuchet MS", sans-serif;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 1.08rem;
}

.cyra-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.cyra-nav-links a {
  text-decoration: none;
  color: #d9cebd;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.cyra-nav-links a:hover {
  color: var(--cyra-gold-soft);
}

.cyra-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.cyra-btn {
  text-decoration: none;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cyra-btn:hover {
  transform: translateY(-1px);
}

.cyra-btn-gold {
  color: #140f09;
  border-color: rgba(229, 206, 168, 0.65);
  background: linear-gradient(145deg, #eedcbc 0%, #ca9f5f 45%, #ad7e3d 100%);
  box-shadow:
    0 0 0 1px rgba(229, 206, 168, 0.2) inset,
    0 10px 24px rgba(183, 138, 74, 0.22);
}

.cyra-btn-gold:hover {
  box-shadow:
    0 0 0 1px rgba(229, 206, 168, 0.34) inset,
    0 14px 28px rgba(183, 138, 74, 0.3);
}

.cyra-btn-ghost {
  color: #e6dccd;
  border-color: rgba(229, 206, 168, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.cyra-btn-ghost:hover {
  border-color: rgba(229, 206, 168, 0.54);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.cyra-btn-lg {
  min-height: 50px;
  padding: 0 22px;
  font-size: 0.95rem;
}

.cyra-btn-wide {
  width: 100%;
}

.cyra-page {
  width: min(1440px, calc(100vw - 34px));
  margin: 0 auto;
  padding: clamp(34px, 4.8vh, 58px) 0 0;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: calc(100dvh - 150px);
}

.cyra-flash-wrap {
  margin: 0 0 8px;
  display: grid;
  gap: 8px;
}

.cyra-flash {
  margin: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 0.86rem;
  border: 1px solid rgba(229, 206, 168, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.cyra-flash-error {
  border-color: rgba(255, 111, 111, 0.35);
}

.cyra-flash-success {
  border-color: rgba(154, 218, 125, 0.35);
}

.cyra-hero {
  min-height: clamp(640px, calc(100dvh - 190px), 880px);
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(380px, 1fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: center;
  align-content: center;
}

.cyra-hero-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
}

.cyra-copy {
  max-width: 720px;
}

.cyra-kicker {
  margin: 0;
  color: var(--cyra-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.cyra-copy h1 {
  margin: 10px 0 18px;
  font-family: "Bahnschrift SemiBold", "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: clamp(2.35rem, 3.95vw, 4.3rem);
  line-height: 1.02;
  max-width: 15ch;
}

.cyra-subcopy {
  margin: 0;
  color: var(--cyra-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 56ch;
}

.cyra-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.cyra-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ece3d6;
  font-size: 0.92rem;
}

.cyra-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 206, 168, 0.48);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 242, 221, 0.92), rgba(183, 138, 74, 0.76));
  box-shadow: 0 0 0 5px rgba(183, 138, 74, 0.16);
}

.cyra-copy-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cyra-phone-column {
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.cyra-phone-stage {
  width: 100%;
  max-width: 430px;
  min-height: clamp(620px, 74vh, 760px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
}

.cyra-phone-guide {
  position: absolute;
  left: auto;
  right: -92px;
  top: 18%;
  transform: none;
  z-index: 4;
  pointer-events: none;
  display: grid;
  justify-items: start;
  gap: 5px;
  width: 160px;
}

.cyra-phone-guide p {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 206, 168, 0.64);
  background: rgba(13, 12, 11, 0.88);
  color: #f5e3c7;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.cyra-phone-guide small {
  margin: 0;
  color: #d8c7ae;
  font-size: 0.64rem;
  letter-spacing: 0.03em;
}

.cyra-phone-guide-arrow {
  width: 98px;
  height: 34px;
  border-top: 2px dashed rgba(229, 206, 168, 0.66);
  border-left: 2px dashed rgba(229, 206, 168, 0.66);
  border-top-left-radius: 30px;
  transform: translateX(-6px) rotate(4deg);
  position: relative;
}

.cyra-phone-guide-arrow::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -9px;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent rgba(229, 206, 168, 0.88) transparent transparent;
  transform: rotate(8deg);
}

.cyra-phone {
  width: min(100%, 330px);
  position: relative;
  transform-style: preserve-3d;
  animation: cyraPhoneFloat 6.5s ease-in-out infinite;
  z-index: 2;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.cyra-phone.is-dragging {
  cursor: grabbing;
}

.cyra-phone-touch {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(240, 220, 188, 0.76);
  background: radial-gradient(circle at 35% 35%, rgba(255, 246, 231, 0.82), rgba(190, 143, 74, 0.52));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transform: translate(calc(var(--touch-x, 50%) - 50%), calc(var(--touch-y, 50%) - 50%));
  transition: transform 220ms ease, opacity 220ms ease;
  z-index: 5;
  opacity: 0;
}

.cyra-phone-touch.is-visible {
  opacity: 0.95;
}

.cyra-phone-touch::before,
.cyra-phone-touch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.cyra-phone-touch::before {
  width: 11px;
  height: 11px;
  background: rgba(44, 30, 12, 0.66);
}

.cyra-phone-touch::after {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(245, 227, 196, 0.7);
  opacity: 0;
}

.cyra-phone-touch.is-pulse::after {
  animation: cyraTouchPulse 430ms ease;
}

.cyra-phone:focus-visible {
  outline: none;
}

.cyra-phone:focus-visible .cyra-phone-frame {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 3px rgba(229, 206, 168, 0.5);
}

.cyra-phone-detail {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.cyra-phone-detail-a {
  width: 220px;
  height: 220px;
  left: -24px;
  top: 8%;
  background: radial-gradient(circle, rgba(185, 139, 74, 0.34), rgba(185, 139, 74, 0));
  filter: blur(16px);
}

.cyra-phone-detail-b {
  width: 170px;
  height: 170px;
  right: -16px;
  bottom: 14%;
  background: radial-gradient(circle, rgba(229, 206, 168, 0.28), rgba(229, 206, 168, 0));
  filter: blur(14px);
}

.cyra-phone-detail-c {
  width: 262px;
  height: 262px;
  left: 40px;
  top: 20%;
  border: 1px solid rgba(229, 206, 168, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.cyra-phone-grid {
  position: absolute;
  inset: 12% -8% 14% -16%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.12;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  z-index: 0;
}

.cyra-phone-reflect {
  position: absolute;
  inset: -54px -62px;
  background: radial-gradient(circle at 50% 35%, rgba(229, 206, 168, 0.24), transparent 58%);
  filter: blur(22px);
  z-index: 0;
}

.cyra-phone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  padding: 16px 12px 12px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(164deg, #2f2e2c 0%, #121211 64%, #0a0a0a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.6);
  transform: rotateY(-10deg) rotateX(8deg) rotateZ(-2deg);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  transition: transform 260ms ease;
}

.cyra-phone:hover .cyra-phone-frame {
  transform: rotateY(-7deg) rotateX(7deg) rotateZ(-1deg);
}

.cyra-phone-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 40px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.21), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.08));
  opacity: 0.46;
  pointer-events: none;
}

.cyra-phone-notch {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 42%;
  height: 20px;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  background: linear-gradient(180deg, #0b0b0b, #202020);
  z-index: 3;
}

.cyra-phone-top {
  margin-top: 6px;
  padding: 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8c8b2;
}

.cyra-phone-top strong {
  color: #f5e7d1;
}

.cyra-phone-screen {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 25% 0%, rgba(183, 138, 74, 0.22), transparent 44%),
    linear-gradient(160deg, rgba(16, 15, 14, 0.98), rgba(6, 6, 6, 0.98));
}

.cyra-view {
  position: absolute;
  inset: 0;
  padding: 16px 14px;
  display: grid;
  align-content: start;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  overflow: auto;
}

.cyra-view.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cyra-view-kicker {
  margin: 0;
  color: var(--cyra-gold-soft);
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.cyra-view h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.cyra-system-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cyra-system-metrics-finance {
  grid-template-columns: 1fr;
}

.cyra-system-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 3px;
}

.cyra-system-metrics small {
  color: var(--cyra-muted);
  font-size: 0.67rem;
}

.cyra-system-metrics strong {
  color: #f8ecdb;
  font-size: 0.9rem;
}

.cyra-system-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 9px;
  display: grid;
  gap: 8px;
}

.cyra-system-panel > strong {
  color: #f3dfc0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cyra-system-checklist {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 5px;
  color: #e7dece;
  font-size: 0.73rem;
  line-height: 1.45;
}

.cyra-system-table {
  display: grid;
  gap: 7px;
}

.cyra-system-table div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
}

.cyra-system-table span {
  font-size: 0.75rem;
  color: #f5ede2;
}

.cyra-system-table em {
  font-size: 0.68rem;
  font-style: normal;
  color: var(--cyra-muted);
  text-align: right;
}

.cyra-view-action {
  margin-top: auto;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(229, 206, 168, 0.42);
  background: linear-gradient(145deg, rgba(235, 216, 184, 0.24), rgba(183, 138, 74, 0.26));
  color: #f6eee2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.cyra-view-action:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 206, 168, 0.68);
  box-shadow: 0 10px 18px rgba(183, 138, 74, 0.2);
}

.cyra-phone-nav {
  padding: 7px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  align-content: start;
}

.cyra-phone-tab {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cyra-muted);
  min-height: 42px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 170ms ease, background 170ms ease, color 170ms ease;
}

.cyra-phone-tab.is-active {
  color: #111;
  border-color: rgba(229, 206, 168, 0.75);
  background: linear-gradient(145deg, #ead7b4, #b88947);
}

.cyra-phone-tab.is-demo-click {
  box-shadow: 0 0 0 2px rgba(229, 206, 168, 0.5);
  transform: translateY(-1px);
}

.cyra-phone-open {
  grid-column: 1 / -1;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(229, 206, 168, 0.55);
  background: rgba(229, 206, 168, 0.1);
  color: #f2e6d2;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease;
}

.cyra-phone-open:hover {
  background: rgba(229, 206, 168, 0.2);
  border-color: rgba(229, 206, 168, 0.8);
  color: #fff4df;
}

.cyra-plan-column {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-left: 62px;
}

.cyra-plan-card {
  width: min(100%, 430px);
  min-height: clamp(620px, 74vh, 760px);
  max-height: clamp(620px, 74vh, 760px);
  border-radius: 22px;
  border: 1px solid rgba(229, 206, 168, 0.4);
  background:
    radial-gradient(circle at top right, rgba(229, 206, 168, 0.23), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(183, 138, 74, 0.2), transparent 35%),
    linear-gradient(145deg, rgba(24, 22, 20, 0.9), rgba(10, 10, 10, 0.9));
  backdrop-filter: blur(10px);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(183, 138, 74, 0.2);
  overflow: hidden;
}

.cyra-plan-mini {
  margin: 0;
  color: var(--cyra-gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.cyra-plan-card h2 {
  margin: 0;
  font-family: "Bahnschrift SemiBold", "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1.52rem;
  line-height: 1.2;
}

.cyra-price {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  font-weight: 800;
  color: #f5e5ca;
  line-height: 1;
}

.cyra-plan-copy {
  margin: 0;
  color: #d9ccb8;
  font-size: 0.96rem;
  line-height: 1.45;
}

.cyra-plan-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #e8dece;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cyra-plan-points {
  display: grid;
  gap: 10px;
}

.cyra-plan-points article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 11px;
  display: grid;
  gap: 4px;
}

.cyra-plan-points strong {
  color: #f1dcbf;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cyra-plan-points p {
  margin: 0;
  color: var(--cyra-muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.cyra-plan-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.cyra-footer {
  margin-top: 8px;
  width: 100%;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.97), rgba(7, 7, 7, 0.99));
  border-top: 1px solid rgba(229, 206, 168, 0.14);
}

.cyra-footer-main {
  width: 100%;
  margin: 0;
  padding: 10px 30px 10px 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cyra-footer-brand strong {
  font-family: "Bahnschrift SemiBold", "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
}

.cyra-footer-brand p {
  margin: 3px 0 0;
  color: var(--cyra-muted);
  font-size: 0.75rem;
}

.cyra-footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cyra-footer-links a {
  text-decoration: none;
  color: #d8ccbb;
  font-size: 0.76rem;
}

.cyra-footer-links a:hover {
  color: var(--cyra-gold-soft);
}

.cyra-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
}

.cyra-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(229, 206, 168, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #d7cab7;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 170ms ease, color 170ms ease, background 170ms ease, transform 170ms ease;
}

.cyra-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cyra-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 206, 168, 0.7);
  color: #f4e4cb;
  background: rgba(229, 206, 168, 0.09);
}

.cyra-footer-anchors {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.cyra-sac {
  position: fixed;
  right: 20px;
  bottom: 72px;
  z-index: 45;
}

.cyra-sac-btn {
  border-radius: 999px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(229, 206, 168, 0.5);
  background: rgba(16, 15, 14, 0.95);
  color: #efe5d6;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--cyra-shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cyra-sac-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cyra-sac-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(92vw, 320px);
  border-radius: 16px;
  border: 1px solid rgba(229, 206, 168, 0.26);
  background: rgba(12, 12, 12, 0.95);
  padding: 14px;
  box-shadow: var(--cyra-shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cyra-sac.is-open .cyra-sac-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cyra-sac-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cyra-sac-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cyra-sac-title svg {
  width: 16px;
  height: 16px;
  fill: #f2ddbd;
}

.cyra-sac-panel strong {
  font-size: 0.9rem;
}

.cyra-sac-close {
  border: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5e8d4;
  cursor: pointer;
}

.cyra-sac-panel p {
  margin: 9px 0 12px;
  color: var(--cyra-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.cyra-sac-panel form {
  display: grid;
  gap: 10px;
}

.cyra-sac-panel label {
  display: grid;
  gap: 5px;
  font-size: 0.77rem;
  color: #e8dcc8;
}

.cyra-sac-panel input,
.cyra-sac-panel textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cyra-text);
  font: inherit;
  padding: 9px 10px;
}

.cyra-sac-panel textarea {
  resize: vertical;
}

.cyra-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: cyraReveal 0.75s forwards;
  animation-delay: var(--d, 0s);
}

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

@keyframes cyraPhoneFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cyraTouchPulse {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@keyframes cyraAgendaScroll {
  0% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-62px);
  }
  75% {
    transform: translateY(-108px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes cyraMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

#sac,
#termos,
#privacidade {
  scroll-margin-top: 96px;
}

@media (max-width: 1280px) {
  .cyra-page {
    padding-top: clamp(28px, 4vh, 46px);
  }

  .cyra-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 390px);
    gap: clamp(18px, 2vw, 28px);
  }

  .cyra-hero-left {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  }

  .cyra-phone-stage {
    min-height: clamp(560px, 70vh, 680px);
  }

  .cyra-plan-card {
    min-height: clamp(560px, 70vh, 680px);
    max-height: clamp(560px, 70vh, 680px);
  }
}

@media (max-width: 1080px) {
  body.cyra-lp-body {
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    min-height: 100%;
  }

  body.cyra-lp-body::before {
    display: none;
  }

  .cyra-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 10px;
    align-content: start;
  }

  .cyra-plan-column {
    justify-content: center;
    padding-left: 0;
  }

  .cyra-plan-card {
    width: min(100%, 520px);
    min-height: 0;
    max-height: none;
    padding: 18px 16px;
    gap: 10px;
  }

  .cyra-phone-stage {
    min-height: 0;
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  html,
  body,
  body.cyra-lp-body {
    background-color: #060606 !important;
  }

  body.cyra-lp-body {
    background-image: linear-gradient(180deg, #141312 0%, #060606 100%) !important;
  }

  .cyra-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .cyra-nav {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
    padding-block: 10px;
  }

  .cyra-nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .cyra-nav-links a {
    font-size: 0.78rem;
  }

  .cyra-nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cyra-hero-left {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cyra-copy,
  .cyra-copy h1,
  .cyra-subcopy {
    max-width: 100%;
  }

  .cyra-phone-stage {
    min-height: 0;
    max-width: 380px;
  }

  .cyra-phone {
    width: min(100%, 340px);
    animation: none;
  }

  .cyra-phone-frame {
    transform: none;
  }

  .cyra-nav-shell {
    backdrop-filter: none;
  }

  .cyra-phone-detail,
  .cyra-phone-grid {
    display: none;
  }

  .cyra-phone-guide {
    left: auto;
    right: -8px;
    top: -6px;
    transform: none;
    width: auto;
  }

  .cyra-phone-guide-arrow {
    width: 84px;
    transform: translateX(-4px) rotate(4deg);
  }
}

@media (max-width: 640px) {
  .cyra-page {
    width: calc(100vw - 24px);
    padding-top: 22px;
  }

  .cyra-footer-main {
    width: 100%;
    padding: 10px 12px;
  }

  .cyra-copy h1 {
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  .cyra-subcopy {
    font-size: 0.98rem;
  }

  .cyra-phone-tab {
    font-size: 0.56rem;
  }

  .cyra-plan-card {
    padding: 16px 14px;
    gap: 9px;
  }

  .cyra-phone-guide {
    position: static;
    margin-bottom: 10px;
    justify-items: start;
  }

  .cyra-phone-guide small {
    font-size: 0.62rem;
  }

  .cyra-phone-guide-arrow {
    display: none;
  }

  .cyra-phone-touch {
    width: 38px;
    height: 38px;
  }

  .cyra-footer-links {
    gap: 9px;
  }

  .cyra-sac {
    right: 12px;
    bottom: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cyra-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .cyra-phone {
    animation: none;
  }
}
