:root {
    --purple:#4800b9;
    --purple-dark:#340086;
    --purple-soft:#f3effc;
    --purple-pale:#faf8ff;

    --green:#3e8057;
    --green-soft:#edf6f0;

    --black:#131417;
    --text:#51545b;
    --muted:#83868d;

    --line:#e7e7eb;
    --surface:#f7f7f9;

    --white:#fff;

    --container:1240px;

    --radius:28px;

    --shadow:
        0 28px 80px
        rgba(35,24,58,.10);
}


* {
    box-sizing:border-box;
}


html {
    scroll-behavior:smooth;
}


body {
    margin:0;

    font-family:
        Pretendard,
        "Noto Sans KR",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color:var(--black);

    background:#fff;

    -webkit-font-smoothing:
        antialiased;
}


body.menu-open {
    overflow:hidden;
}


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


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


button {
    font:inherit;
}


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

    margin:auto;
}


.skip {
    position:fixed;
    z-index:9999;

    left:20px;
    top:-100px;

    background:#111;
    color:#fff;

    padding:12px 18px;

    border-radius:8px;
}


.skip:focus {
    top:20px;
}



/* HEADER */

.header {
    position:sticky;
    z-index:1000;

    top:0;

    height:80px;

    border-bottom:
        1px solid
        rgba(231,231,235,.8);

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(18px);
}


.header-inner {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    height:100%;

    margin:auto;

    display:flex;
    align-items:center;

    gap:30px;
}


.logo {
    margin-right:auto;
}


.logo img {
    width:180px;
    height:auto;
}


.nav {
    display:flex;

    gap:29px;

    align-items:center;
}


.nav a {
    position:relative;

    color:#3d3f44;

    font-size:15px;
    font-weight:650;
}


.nav a::after {
    content:"";

    position:absolute;

    height:2px;

    left:0;
    right:100%;
    bottom:-9px;

    background:var(--purple);

    transition:.2s;
}


.nav a:hover::after {
    right:0;
}


.header-contact {
    display:flex;

    align-items:center;
    justify-content:center;

    min-height:44px;

    margin-left:12px;

    padding:0 20px;

    border-radius:100px;

    background:var(--purple);

    color:#fff;

    font-size:14px;
    font-weight:750;
}


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



/* HERO */

.hero {
    position:relative;

    overflow:hidden;

    padding:
        108px 0
        96px;

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #faf8ff 45%,
            #f3effc 100%
        );
}


.hero::before {
    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-380px;
    right:-220px;

    border:
        1px solid
        rgba(72,0,185,.12);

    border-radius:50%;
}


.hero-layout {
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(440px,.88fr);

    align-items:center;

    gap:80px;
}


.eyebrow,
.section-label {
    margin:0 0 21px;

    color:var(--purple);

    font-size:12px;
    font-weight:850;

    letter-spacing:.16em;
}


.hero h1,
.heading h2,
.monitoring-copy h2,
.research h2,
.plantdo-copy h2,
.contact h2 {
    margin:0;

    font-size:
        clamp(
            42px,
            4.8vw,
            66px
        );

    line-height:1.1;

    letter-spacing:-.05em;
}


.hero h1 {
    font-size:
        clamp(
            54px,
            5.6vw,
            78px
        );
}


.hero h1 span,
.heading h2 span,
.monitoring-copy h2 span,
.research h2 span,
.plantdo-copy h2 span {
    color:var(--purple);
}


.hero-text {
    max-width:610px;

    margin:
        29px 0 0;

    color:var(--text);

    font-size:20px;
    line-height:1.8;

    word-break:keep-all;
}


.hero-buttons {
    display:flex;

    gap:12px;

    margin-top:38px;
}


.btn {
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-height:55px;

    padding:0 25px;

    border-radius:100px;

    font-size:15px;
    font-weight:750;
}


.btn.primary {
    background:var(--purple);
    color:#fff;
}


.btn.secondary {
    background:#fff;

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


.hero-keywords {
    display:flex;

    gap:36px;

    margin-top:53px;

    padding-top:28px;

    border-top:
        1px solid
        rgba(72,0,185,.12);
}


.hero-keywords div {
    display:flex;
    flex-direction:column;

    gap:5px;
}


.hero-keywords strong {
    color:var(--purple);

    font-size:11px;
    letter-spacing:.13em;
}


.hero-keywords span {
    color:#65676e;

    font-size:13px;
    font-weight:650;
}



/* HERO DISPLAY */

.hero-display {
    position:relative;

    min-height:530px;

    overflow:hidden;

    padding:35px;

    border-radius:38px;

    color:#fff;

    background:
        radial-gradient(
            circle at 80% 10%,
            #6d25d8 0%,
            #4800b9 40%,
            #2a006d 100%
        );

    box-shadow:
        0 38px 90px
        rgba(72,0,185,.24);
}


.display-circle {
    position:absolute;

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

    border-radius:50%;
}


.circle-a {
    width:390px;
    height:390px;

    top:-180px;
    right:-180px;
}


.circle-b {
    width:230px;
    height:230px;

    bottom:-120px;
    left:-100px;
}


.display-badge {
    position:relative;
    z-index:2;

    margin-bottom:32px;

    color:
        rgba(255,255,255,.6);

    font-size:10px;
    font-weight:800;

    letter-spacing:.14em;
}


.display-title {
    position:relative;
    z-index:2;

    display:flex;

    justify-content:space-between;
    align-items:center;
}


.display-title > div {
    display:flex;
    flex-direction:column;

    gap:5px;
}


.display-title span {
    color:
        rgba(255,255,255,.53);

    font-size:10px;
}


.display-title strong {
    font-size:15px;
}


.display-title .online {
    padding:7px 10px;

    border-radius:100px;

    background:
        rgba(255,255,255,.11);

    color:#bef5cd;

    font-size:9px;
    font-weight:750;
}


.display-main {
    position:relative;
    z-index:2;

    margin-top:28px;

    padding:25px;

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

    border-radius:22px;

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


.display-moisture > span {
    display:block;

    color:
        rgba(255,255,255,.58);

    font-size:11px;
}


.display-moisture strong {
    display:block;

    margin-top:4px;

    font-size:58px;

    letter-spacing:-.05em;
}


.display-moisture small {
    font-size:22px;

    color:
        rgba(255,255,255,.58);
}


.graph {
    height:100px;

    display:flex;
    align-items:flex-end;

    gap:7px;

    margin-top:20px;
}


.graph i {
    flex:1;

    display:block;

    min-width:3px;

    border-radius:20px;

    background:
        linear-gradient(
            to top,
            rgba(202,174,255,.25),
            #c7a4ff
        );
}


.display-metrics {
    position:relative;
    z-index:2;

    display:grid;

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

    gap:10px;

    margin-top:12px;
}


.display-metrics div {
    padding:16px;

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

    border-radius:16px;

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


.display-metrics span {
    display:block;

    color:
        rgba(255,255,255,.52);

    font-size:10px;
}


.display-metrics strong {
    display:block;

    margin-top:6px;

    font-size:21px;
}


.display-metrics small {
    color:
        rgba(255,255,255,.48);

    font-size:10px;
}



/* TECHNOLOGY STRIP */

.technology-strip {
    border-bottom:
        1px solid
        var(--line);
}


.technology-list {
    min-height:87px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:30px;
}


.technology-list span {
    color:#55575e;

    font-size:11px;
    font-weight:800;

    letter-spacing:.14em;
}


.technology-list i {
    width:4px;
    height:4px;

    background:#bcbec4;

    border-radius:50%;
}



/* COMMON */

.section {
    padding:125px 0;
}


.heading {
    max-width:790px;

    margin-bottom:60px;
}


.heading-split {
    max-width:none;

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:80px;

    align-items:end;
}


.heading-description {
    max-width:520px;

    margin:
        0 0 5px auto;

    color:var(--text);

    font-size:18px;
    line-height:1.8;

    word-break:keep-all;
}


.heading-description.left {
    margin:
        25px 0 0;
}


.heading.center {
    margin-left:auto;
    margin-right:auto;

    text-align:center;
}



/* TECHNOLOGY */

.technology-grid {
    display:grid;

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

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

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


.technology-grid article {
    min-height:265px;

    padding:29px 23px;

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


.technology-grid article:last-child {
    border-right:0;
}


.technology-grid article > span {
    color:var(--purple);

    font-size:11px;
    font-weight:800;
}


.technology-grid h3 {
    margin:
        45px 0 17px;

    font-size:16px;

    letter-spacing:.08em;
}


.technology-grid p {
    margin:0;

    color:var(--text);

    font-size:14px;
    line-height:1.75;
}



/* PRODUCTS */

.solutions {
    background:var(--surface);
}


.product-grid {
    display:grid;

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

    gap:18px;
}


.product-card {
    position:relative;

    min-height:460px;

    padding:36px;

    overflow:hidden;

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

    border-radius:var(--radius);

    background:#fff;
}


.product-card.featured {
    color:#fff;

    background:
        linear-gradient(
            145deg,
            #4e00c3,
            #2c0071
        );

    border-color:transparent;
}


.product-top {
    display:flex;

    justify-content:space-between;
    align-items:flex-start;
}


.product-icon {
    width:70px;
    height:70px;

    display:grid;
    place-items:center;

    border-radius:19px;

    background:var(--purple-soft);
}


.featured .product-icon {
    background:
        rgba(255,255,255,.11);
}


.number {
    color:#989aa0;

    font-size:11px;
    font-weight:800;
}


.featured .number {
    color:
        rgba(255,255,255,.45);
}


.product-card h3 {
    margin:
        31px 0 14px;

    font-size:29px;

    letter-spacing:-.035em;
}


.product-card > p {
    max-width:490px;

    margin:0;

    color:var(--text);

    font-size:16px;
    line-height:1.75;
}


.featured > p {
    color:
        rgba(255,255,255,.69);
}


.tags {
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-top:27px;
}


.tags span {
    padding:7px 10px;

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

    border-radius:100px;

    color:#696b72;

    font-size:11px;
    font-weight:650;
}


.featured .tags span {
    border-color:
        rgba(255,255,255,.17);

    color:
        rgba(255,255,255,.7);
}


.product-card > a {
    position:absolute;

    left:36px;
    bottom:32px;

    color:var(--purple);

    font-size:13px;
    font-weight:800;
}


.featured > a {
    color:#d9c5ff;
}



/* PRODUCT ICONS */

.sensor-icon div {
    position:relative;

    width:14px;
    height:45px;

    border:
        3px solid
        var(--purple);

    border-radius:7px;
}


.sensor-icon div::after {
    content:"";

    position:absolute;

    left:50%;
    top:40px;

    width:3px;
    height:24px;

    transform:
        translateX(-50%);

    background:var(--purple);
}


.meter-icon div {
    width:43px;
    height:43px;

    border:
        5px solid
        var(--purple);

    border-radius:50%;
}


.monitor-icon div {
    position:relative;

    width:47px;
    height:32px;

    border:
        3px solid #d7c1ff;

    border-radius:5px;
}


.monitor-icon div::after {
    content:"";

    position:absolute;

    left:11px;
    bottom:-10px;

    width:20px;
    height:3px;

    background:#d7c1ff;
}


.valve-icon div {
    position:relative;

    width:46px;
    height:18px;

    border:
        4px solid
        var(--purple);

    border-radius:7px;
}


.valve-icon div::after {
    content:"";

    position:absolute;

    left:17px;
    top:-10px;

    width:4px;
    height:28px;

    background:var(--purple);
}



/* CONNECTED */

.connected {
    background:#fff;
}


.flow {
    display:grid;

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

    gap:9px;

    align-items:stretch;
}


.flow article {
    min-height:180px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:21px;

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

    border-radius:19px;
}


.flow article b {
    margin-bottom:23px;

    color:var(--purple);

    font-size:10px;
}


.flow article strong {
    font-size:16px;
}


.flow article small {
    margin-top:7px;

    color:var(--muted);

    font-size:11px;
}


.flow > i {
    display:grid;

    place-items:center;

    color:#b7b9bd;

    font-style:normal;
}


.feedback {
    max-width:650px;

    margin:
        34px auto 0;

    display:flex;

    gap:15px;

    align-items:center;

    color:#686a70;

    font-size:12px;
}


.feedback i {
    flex:1;

    height:1px;

    background:
        linear-gradient(
            to right,
            var(--purple),
            transparent
        );
}


.feedback strong {
    color:var(--purple);
}



/* MONITORING */

.monitoring {
    background:
        var(--purple-pale);
}


.monitoring-layout {
    display:grid;

    grid-template-columns:
        .82fr 1.18fr;

    gap:75px;

    align-items:center;
}


.monitoring-copy > p:not(.section-label) {
    max-width:470px;

    margin:
        25px 0 0;

    color:var(--text);

    font-size:17px;
    line-height:1.8;

    word-break:keep-all;
}


.monitor-tags {
    margin-top:29px;
}


.dashboard {
    padding:21px;

    border:
        1px solid #ece8f4;

    border-radius:28px;

    background:#fff;

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


.dashboard-head {
    display:flex;

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

    padding:
        3px 4px 17px;

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


.dashboard-head > div {
    display:flex;

    flex-direction:column;

    gap:3px;
}


.dashboard-head strong {
    color:var(--purple);

    font-size:13px;
}


.dashboard-head span {
    color:var(--muted);

    font-size:10px;
}


.dashboard-head .status {
    padding:6px 9px;

    border-radius:100px;

    background:var(--green-soft);

    color:var(--green);

    font-size:9px;
    font-weight:800;
}


.summary-cards {
    display:grid;

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

    gap:9px;

    margin-top:14px;
}


.summary-cards article {
    padding:17px;

    border-radius:14px;

    background:#f8f7fa;
}


.summary-cards span {
    display:block;

    color:var(--muted);

    font-size:10px;
}


.summary-cards strong {
    display:block;

    margin-top:6px;

    font-size:24px;
}


.summary-cards small {
    color:var(--muted);

    font-size:10px;
}


.dashboard-graph {
    position:relative;

    height:270px;

    margin-top:13px;

    padding:
        20px
        16px
        20px
        46px;

    overflow:hidden;

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

    border-radius:15px;
}


.axis {
    position:absolute;

    z-index:3;

    left:13px;
    top:22px;
    bottom:22px;

    display:flex;

    flex-direction:column;
    justify-content:space-between;

    color:#a3a5ab;

    font-size:8px;
}


.grid-lines {
    position:absolute;

    inset:
        20px
        16px
        20px
        46px;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 24%,
            #efedf2 25%
        );
}


.dashboard-graph svg {
    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    color:var(--purple);
}


.sensor-row {
    display:flex;

    gap:7px;

    margin-top:12px;
}


.sensor-row span {
    flex:1;

    padding:7px;

    border-radius:7px;

    background:#f7f6f8;

    color:#898b91;

    text-align:center;

    font-size:8px;
}



/* FIELD */

.field-grid {
    display:grid;

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

    gap:17px;
}


.field-grid > article {
    overflow:hidden;

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

    border-radius:24px;
}


.field-image {
    position:relative;

    height:255px;

    display:flex;

    align-items:flex-end;

    padding:21px;

    overflow:hidden;
}


.field-image::after {
    content:"";

    position:absolute;

    width:260px;
    height:260px;

    top:-125px;
    right:-95px;

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

    border-radius:50%;
}


.field-image.soil {
    background:
        linear-gradient(
            135deg,
            #57775f,
            #284632
        );
}


.field-image.water {
    background:
        linear-gradient(
            135deg,
            #597a86,
            #294b58
        );
}


.field-image.group {
    background:
        linear-gradient(
            135deg,
            #5f54a2,
            #352b72
        );
}


.field-image span {
    position:relative;
    z-index:2;

    color:
        rgba(255,255,255,.76);

    font-size:10px;
    font-weight:800;

    letter-spacing:.13em;
}


.field-content {
    padding:27px;
}


.field-content small {
    color:var(--purple);

    font-size:9px;
    font-weight:800;

    letter-spacing:.12em;
}


.field-content h3 {
    margin:
        12px 0;

    font-size:21px;

    letter-spacing:-.025em;
}


.field-content p {
    margin:0;

    color:var(--text);

    font-size:14px;
    line-height:1.75;
}



/* RESEARCH */

.research {
    color:#fff;

    background:
        linear-gradient(
            135deg,
            #241339,
            #11091d
        );
}


.research-layout {
    display:grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:85px;
}


.section-label.light {
    color:#cdb4ff;
}


.research h2 span {
    color:#cfb6ff;
}


.research-text {
    max-width:590px;

    margin:8px 0 0;

    color:
        rgba(255,255,255,.68);

    font-size:17px;
    line-height:1.8;

    word-break:keep-all;
}


.research-flow {
    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:8px;

    margin-top:34px;
}


.research-flow span,
.research-flow strong {
    padding:8px 11px;

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

    border-radius:100px;

    color:
        rgba(255,255,255,.72);

    font-size:11px;
}


.research-flow b {
    color:
        rgba(255,255,255,.30);
}


.research-flow i {
    margin:0 3px;

    color:#c8abff;

    font-style:normal;
}


.research-flow strong {
    border-color:
        rgba(204,174,255,.35);

    color:#d7c1ff;

    background:
        rgba(72,0,185,.25);
}



/* PLANTDO */

.plantdo {
    background:#fafafa;
}


.plantdo-layout {
    display:grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:85px;

    align-items:center;
}


.plantdo-visual {
    position:relative;

    min-height:440px;

    display:grid;

    place-items:center;

    overflow:hidden;

    border-radius:34px;

    background:
        radial-gradient(
            circle at center,
            #f1edfb,
            #faf9fd 70%
        );
}


.plantdo-gf-mark {
    position:absolute;

    width:75px;

    top:30px;
    left:30px;

    opacity:.12;
}


.plant-device {
    position:relative;
    z-index:3;

    width:130px;
    height:290px;
}


.plant-head {
    position:absolute;

    left:20px;
    top:8px;

    width:90px;
    height:70px;

    border-radius:
        48px 48px
        30px 30px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #d7d7dc
        );

    box-shadow:
        0 17px 36px
        rgba(30,30,40,.14);
}


.plant-head::after {
    content:"";

    position:absolute;

    width:15px;
    height:15px;

    top:25px;
    left:38px;

    border-radius:50%;

    background:var(--purple);
}


.plant-neck {
    position:absolute;

    top:71px;
    left:59px;

    width:13px;
    height:96px;

    border-radius:6px;

    background:
        linear-gradient(
            to right,
            #c1c1c7,
            #f4f4f5,
            #aaaab0
        );
}


.plant-probe {
    position:absolute;

    top:160px;
    left:63px;

    width:7px;
    height:124px;

    border-radius:4px;

    background:
        linear-gradient(
            to right,
            #69696e,
            #b7b7bc
        );
}


.ring {
    position:absolute;

    border:
        1px solid
        rgba(72,0,185,.13);

    border-radius:50%;
}


.ring-one {
    width:290px;
    height:290px;
}


.ring-two {
    width:400px;
    height:400px;
}


.plantdo-copy > p:not(.section-label) {
    max-width:590px;

    margin:
        25px 0 0;

    color:var(--text);

    font-size:17px;
    line-height:1.8;

    word-break:keep-all;
}



/* CONTACT */

.contact {
    padding:105px 0;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #4800b9,
            #320082
        );
}


.contact-layout {
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:80px;
}


.contact p:not(.section-label) {
    max-width:520px;

    margin:5px 0 0;

    color:
        rgba(255,255,255,.75);

    font-size:17px;
    line-height:1.8;
}


.contact-tags {
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-top:25px;
}


.contact-tags span {
    padding:7px 10px;

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

    border-radius:100px;

    color:
        rgba(255,255,255,.78);

    font-size:11px;
}


.contact-pending {
    display:inline-block;

    margin-top:29px;

    padding:
        12px 17px;

    border-radius:10px;

    background:#fff;

    color:var(--purple-dark);

    font-size:12px;
    font-weight:750;
}



/* FOOTER */

.footer {
    padding:
        60px 0 30px;

    background:#0e0e11;

    color:#fff;
}


.footer-layout {
    display:grid;

    grid-template-columns:
        1.3fr .7fr 1fr;

    gap:55px;
}


.footer-brand img {
    width:175px;

    filter:
        brightness(0)
        invert(1);
}


.footer-brand p {
    max-width:320px;

    margin:
        16px 0 0;

    color:
        rgba(255,255,255,.44);

    font-size:13px;
    line-height:1.7;
}


.footer nav {
    display:flex;

    flex-direction:column;

    gap:11px;

    color:
        rgba(255,255,255,.62);

    font-size:13px;
}


.footer-company {
    display:flex;

    flex-direction:column;

    gap:11px;
}


.footer-company strong {
    font-size:13px;
}


.footer-company span {
    color:
        rgba(255,255,255,.43);

    font-size:11px;
}


.copyright {
    display:flex;

    justify-content:space-between;

    margin-top:52px;

    padding-top:22px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.31);

    font-size:10px;
}



/* TABLET */

@media(max-width:1050px) {

    .nav {
        gap:18px;
    }

    .nav a {
        font-size:13px;
    }

    .hero-layout,
    .monitoring-layout,
    .plantdo-layout {
        gap:45px;
    }

    .technology-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

    .technology-grid article:nth-child(3) {
        border-right:0;
    }

    .flow {
        grid-template-columns:
            repeat(3,1fr);
    }

    .flow > i {
        display:none;
    }

}



/* MOBILE NAV */

@media(max-width:900px) {

    .header {
        height:70px;
    }

    .header-inner {
        height:70px;
    }

    .logo img {
        width:157px;
    }

    .nav,
    .header-contact {
        display:none;
    }

    .mobile-button {
        display:flex;

        width:45px;
        height:45px;

        flex-direction:column;

        justify-content:center;

        gap:5px;

        padding:10px;

        border:0;
        background:none;
    }

    .mobile-button span {
        height:2px;
        width:100%;

        background:#222;
    }

    .mobile-nav {
        position:fixed;

        display:none;

        left:0;
        right:0;
        top:70px;

        max-height:
            calc(100vh - 70px);

        overflow:auto;

        padding:22px 24px 26px;

        background:#fff;

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

        box-shadow:
            0 25px 45px
            rgba(0,0,0,.08);
    }

    .mobile-nav.open {
        display:flex;

        flex-direction:column;
    }

    .mobile-nav a {
        padding:15px 2px;

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

        font-size:17px;
        font-weight:700;
    }

    .mobile-nav .mobile-contact {
        margin-top:12px;

        border:0;

        border-radius:10px;

        background:var(--purple);

        color:#fff;

        text-align:center;
    }

    .hero {
        padding:
            76px 0 70px;
    }

    .hero-layout,
    .heading-split,
    .monitoring-layout,
    .research-layout,
    .plantdo-layout,
    .contact-layout {
        grid-template-columns:1fr;
    }

    .hero-display {
        min-height:510px;
    }

    .heading-split {
        gap:28px;
    }

    .heading-description {
        margin:0;
    }

    .research-layout,
    .contact-layout {
        gap:42px;
    }

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

    .field-grid > article {
        display:grid;

        grid-template-columns:
            .8fr 1.2fr;
    }

    .field-image {
        height:auto;

        min-height:245px;
    }

}



/* SMALL MOBILE */

@media(max-width:650px) {

    .container,
    .header-inner {
        width:
            min(
                calc(100% - 32px),
                var(--container)
            );
    }

    .hero h1 {
        font-size:
            clamp(
                42px,
                12vw,
                54px
            );
    }

    .hero-text {
        font-size:17px;
    }

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

    .btn {
        width:100%;
    }

    .hero-keywords {
        gap:12px;
    }

    .hero-keywords div {
        flex:1;
    }

    .hero-keywords span {
        font-size:10px;
    }

    .hero-display {
        min-height:465px;

        padding:24px;

        border-radius:27px;
    }

    .display-main {
        padding:20px;
    }

    .display-moisture strong {
        font-size:49px;
    }

    .display-metrics div {
        padding:12px 9px;
    }

    .display-metrics strong {
        font-size:17px;
    }

    .technology-list {
        justify-content:flex-start;

        overflow:auto;

        gap:17px;

        scrollbar-width:none;
    }

    .technology-list::-webkit-scrollbar {
        display:none;
    }

    .section {
        padding:85px 0;
    }

    .heading {
        margin-bottom:40px;
    }

    .hero h1,
    .heading h2,
    .monitoring-copy h2,
    .research h2,
    .plantdo-copy h2,
    .contact h2 {
        font-size:
            clamp(
                34px,
                9.5vw,
                43px
            );
    }

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

    .technology-grid article {
        min-height:auto;

        padding:
            26px 6px;

        border-right:0;

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

    .technology-grid article:last-child {
        border-bottom:0;
    }

    .technology-grid h3 {
        margin:
            17px 0 8px;
    }

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

    .product-card {
        min-height:445px;

        padding:27px;
    }

    .product-card > a {
        left:27px;
        bottom:27px;
    }

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

    .flow article {
        min-height:145px;
    }

    .dashboard {
        padding:13px;

        border-radius:19px;
    }

    .summary-cards article {
        padding:12px 8px;
    }

    .summary-cards strong {
        font-size:19px;
    }

    .dashboard-graph {
        height:205px;
    }

    .sensor-row span:nth-child(n+4) {
        display:none;
    }

    .field-grid > article {
        display:block;
    }

    .field-image {
        height:215px;
    }

    .plantdo-visual {
        min-height:370px;
    }

    .contact {
        padding:80px 0;
    }

    .footer-layout {
        grid-template-columns:1fr;

        gap:35px;
    }

    .copyright {
        flex-direction:column;

        gap:7px;
    }

}

/* GF-WEB-6C-A START */

/* Homepage DATA · AI · R&D professional detail link */
.research-action {
  margin-top: 28px;
}

.research-detail-link {
  display: inline-flex;
  min-height: 48px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(72, 0, 185, 0.18);
  border-radius: 999px;
  background: #4800b9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.research-detail-link:hover {
  transform: translateY(-2px);
  background: #3d009d;
  box-shadow: 0 10px 24px rgba(72, 0, 185, 0.16);
}

.research-detail-link:focus-visible {
  outline: 3px solid rgba(72, 0, 185, 0.20);
  outline-offset: 3px;
}

@media (max-width: 560px) {

  .research-action {
    margin-top: 22px;
  }

  .research-detail-link {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }

}

/* GF-WEB-6C-A END */

/* ==========================================================================
   GF-WEB-CONTACT-3A START
   GeekFriends direct business inquiry form
   ========================================================================== */

.contact-direct-info {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:24px;
}

.contact-direct-info > span {
    min-height:46px;
    padding:8px 14px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:2px;
    border:1px solid rgba(255,255,255,.20);
    border-radius:11px;
    color:rgba(255,255,255,.65);
    font-size:11px;
    font-weight:650;
}

.contact-direct-info strong {
    color:#fff;
    font-size:14px;
    font-weight:780;
}

.contact-form {
    position:relative;
    margin-top:28px;
    padding:28px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 22px 55px rgba(20,0,70,.22);
    color:#17131f;
}

.contact-form-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:17px 15px;
}

.contact-field {
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.contact-field-full {
    grid-column:1 / -1;
}

.contact-field-label {
    display:flex;
    align-items:center;
    gap:7px;
    color:#28222f;
    font-size:13px;
    font-weight:760;
    line-height:1.35;
}

.contact-field-label b,
.contact-field-label em {
    padding:2px 6px;
    border-radius:5px;
    font-size:9px;
    font-style:normal;
    font-weight:800;
}

.contact-field-label b {
    background:#efe7ff;
    color:var(--purple-dark);
}

.contact-field-label em {
    background:#f1f1f3;
    color:#77727d;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width:100%;
    min-width:0;
    border:1px solid #ddd9e3;
    border-radius:10px;
    background:#fff;
    color:#18141e;
    font:inherit;
    font-size:14px;
    outline:none;
    transition:
        border-color .16s ease,
        box-shadow .16s ease;
}

.contact-field input,
.contact-field select {
    height:48px;
    padding:0 14px;
}

.contact-field textarea {
    min-height:150px;
    padding:13px 14px;
    resize:vertical;
    line-height:1.65;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color:#a19ba7;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color:#7040c9;
    box-shadow:0 0 0 3px rgba(91,27,181,.10);
}

.contact-honeypot {
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
}

.contact-privacy {
    margin-top:19px;
    padding-top:18px;
    border-top:1px solid #ebe8ee;
}

.contact-consent {
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#36303c;
    font-size:12px;
    font-weight:650;
    line-height:1.55;
    cursor:pointer;
}

.contact-consent input {
    flex:0 0 auto;
    width:17px;
    height:17px;
    margin:1px 0 0;
    accent-color:#5d18b7;
}

.contact-consent strong {
    color:#5d18b7;
}

.contact-privacy-details {
    margin-top:9px;
    color:#736d79;
    font-size:11px;
    line-height:1.65;
}

.contact-privacy-details summary {
    width:max-content;
    max-width:100%;
    cursor:pointer;
    font-weight:700;
}

.contact-privacy-details > div {
    margin-top:10px;
    padding:12px 14px;
    border-radius:9px;
    background:#f7f6f8;
}

.contact .contact-privacy-details p:not(.section-label) {
    max-width:none;
    margin:0 0 7px;
    color:#706a75;
    font-size:11px;
    line-height:1.65;
}

.contact .contact-privacy-details p:last-child {
    margin-bottom:0;
}

.contact-privacy-details p strong {
    display:inline-block;
    min-width:56px;
    margin-right:5px;
    color:#37313e;
    font-weight:800;
}

.contact-submit-row {
    margin-top:20px;
}

.contact-submit {
    width:100%;
    min-height:52px;
    padding:0 19px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    border:0;
    border-radius:11px;
    background:var(--purple-dark);
    color:#fff;
    font-family:inherit;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
}

.contact-submit:hover {
    transform:translateY(-1px);
}

.contact-submit:disabled {
    cursor:wait;
    opacity:.58;
    transform:none;
}

.contact .contact-form-status:not(.section-label) {
    min-height:20px;
    max-width:none;
    margin:10px 1px 0;
    color:#706a75;
    font-size:11px;
    font-weight:650;
    line-height:1.55;
}

.contact .contact-form-status.is-success:not(.section-label) {
    color:#277649;
}

.contact .contact-form-status.is-error:not(.section-label) {
    color:#b43b3b;
}

@media (max-width:800px) {

    .contact-direct-info {
        margin-top:20px;
    }

    .contact-direct-info > span {
        flex:1 1 150px;
    }

    .contact-form {
        margin-top:23px;
        padding:21px 17px;
        border-radius:18px;
    }

    .contact-form-grid {
        grid-template-columns:1fr;
        gap:15px;
    }

    .contact-field-full {
        grid-column:auto;
    }

    .contact-field input,
    .contact-field select {
        height:50px;
        font-size:16px;
    }

    .contact-field textarea {
        min-height:160px;
        font-size:16px;
    }

    .contact-submit {
        min-height:54px;
        font-size:15px;
    }
}

/* GF-WEB-CONTACT-3A END */
